Test: Fixed test broken by change in verbose default

This commit is contained in:
Paul Beckingham 2015-09-20 19:20:48 -04:00
parent d50372b799
commit 6c90875da4

View file

@ -80,7 +80,7 @@ class TestShowHelperCommand(TestCase):
"""Verify _show command lists all with no arg provided"""
code, out, err = self.t("_show")
self.assertIn("debug=no\n", out)
self.assertIn("verbose=yes\n", out)
self.assertIn("verbose=", out)
if __name__ == "__main__":