diff options
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r-- | tests/test_cmdline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py index e82eb247..89048db9 100644 --- a/tests/test_cmdline.py +++ b/tests/test_cmdline.py @@ -35,10 +35,10 @@ class CmdLineTest(unittest.TestCase): c, o, e = run_cmdline("-L") self.assertEquals(c, 0) self.assert_("Lexers" in o and "Formatters" in o and - "Filters" in o and "Styles" in o) + "Filters" in o and "Styles" in o) c, o, e = run_cmdline("-L", "lexer") self.assertEquals(c, 0) - self.assert_("Lexers" in o and not "Formatters" in o) + self.assert_("Lexers" in o and "Formatters" not in o) c, o, e = run_cmdline("-L", "lexers") self.assertEquals(c, 0) |