Browse Source

fix up failing test

pull/3/head
Brett Langdon 5 years ago
parent
commit
67d68c8db4
Signed by: brettlangdon GPG Key ID: A70042D88B95AA2B
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/test_audit.py

+ 1
- 1
tests/test_audit.py View File

@ -144,7 +144,7 @@ class AuditTest(unittest.TestCase):
self.assertEqual(events[0][0], "socket.gethostname")
self.assertEqual(events[1][0], "socket.__new__")
self.assertEqual(events[2][0], "socket.bind")
self.assertTrue(events[2][2].endswith("('127.0.0.1', 8080)"))
self.assertTrue(events[2][2].endswith("('127.0.0.1', 8080))"))
if __name__ == "__main__":


Loading…
Cancel
Save