mirror of https://github.com/jtesta/ssh-audit.git
Fix warnings in test.
This commit is contained in:
parent
84ac5a30ab
commit
07c272f197
|
@ -57,8 +57,8 @@ class TestOutput(object):
|
||||||
def test_output_defaults(self):
|
def test_output_defaults(self):
|
||||||
out = self.Output()
|
out = self.Output()
|
||||||
# default: on
|
# default: on
|
||||||
assert out.batch == False
|
assert out.batch is False
|
||||||
assert out.colors == True
|
assert out.colors is True
|
||||||
assert out.minlevel == 'info'
|
assert out.minlevel == 'info'
|
||||||
|
|
||||||
def test_output_colors(self):
|
def test_output_colors(self):
|
||||||
|
|
Loading…
Reference in New Issue