Browse Source

Update tests now that cli is not asking for rpm/container install

Samuel Munilla 9 years ago
parent
commit
7f4cafed72
1 changed files with 2 additions and 2 deletions
  1. 2 2
      utils/test/cli_installer_tests.py

+ 2 - 2
utils/test/cli_installer_tests.py

@@ -332,7 +332,7 @@ class AttendedCliTests(OOCliFixture):
             for (host, is_master) in hosts:
                 inputs.append(host)
                 inputs.append('y' if is_master else 'n')
-                inputs.append('rpm')
+                #inputs.append('rpm')
                 if i < len(hosts) - 1:
                     inputs.append('y')  # Add more hosts
                 else:
@@ -349,7 +349,7 @@ class AttendedCliTests(OOCliFixture):
             for (host, is_master) in add_nodes:
                 inputs.append(host)
                 inputs.append('y' if is_master else 'n')
-                inputs.append('rpm')
+                #inputs.append('rpm')
                 if i < len(add_nodes) - 1:
                     inputs.append('y')  # Add more hosts
                 else: