Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2252d60 commit e8aad3dCopy full SHA for e8aad3d
tests/test_simple.py
@@ -128,7 +128,7 @@ def test_custom_init(self):
128
lines = conf.readlines()
129
130
# check number of lines
131
- self.assertGreaterEqual(len(lines), 6)
+ assert (len(lines) >= 6)
132
133
# there should be no trust entries at all
134
assert not (any('trust' in s for s in lines))
tests/test_simple_remote.py
@@ -115,7 +115,7 @@ def test_custom_init(self):
115
lines = os_ops.readlines(hba_file)
116
117
118
119
120
121
0 commit comments