Fixed tests.

This commit is contained in:
Joe Testa
2022-02-21 21:48:10 -05:00
parent 1bdf7029b4
commit c6b8dc97e1
11 changed files with 46 additions and 10 deletions

View File

@ -147,7 +147,7 @@ class TestSSH2:
self.audit(out, self._conf())
out.write()
lines = output_spy.flush()
assert len(lines) == 70
assert len(lines) == 74
def test_ssh2_server_invalid_first_packet(self, output_spy, virtual_socket):
vsocket = virtual_socket
@ -161,5 +161,5 @@ class TestSSH2:
out.write()
assert ret != 0
lines = output_spy.flush()
assert len(lines) == 5
assert len(lines) == 9
assert 'unknown message' in lines[-1]