Browse Source

Fix test

Instead of checking if a string is True, check if 'found' is True, the
string is the error message.

Also, we can remove the loop and use the simpler Python 'in' construct.
Rodolfo Carvalho 8 years ago
parent
commit
73b1a38862
1 changed files with 1 additions and 7 deletions
  1. 1 7
      utils/test/cli_installer_tests.py

+ 1 - 7
utils/test/cli_installer_tests.py

@@ -1010,13 +1010,7 @@ class AttendedCliTests(OOCliFixture):
             full_line = "%s=%s" % (a, b)
             tokens = full_line.split()
             if tokens[0] == host:
-                found = False
-                for token in tokens:
-                    if token == variable:
-                        found = True
-                        continue
-                self.assertTrue("Unable to find %s in line: %s" %
-                                (variable, full_line), found)
+                self.assertTrue(variable in tokens[1:], "Unable to find %s in line: %s" % (variable, full_line))
                 return
         self.fail("unable to find host %s in inventory" % host)