Skip to content

Commit

Permalink
Removing print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
phutelmyer committed Dec 29, 2022
1 parent 93e4acf commit b256534
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/python/strelka/tests/test_scan_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ def test_scan_xml(mocker):
Pass: Sample event matches output of scanner.
Failure: Unable to load file or sample event fails to match.
"""

test_scan_event = {
"elapsed": mock.ANY,
"namespaces": [None],
Expand Down Expand Up @@ -39,6 +38,6 @@ def test_scan_xml(mocker):
scan_class=ScanUnderTest,
fixture_path=Path(__file__).parent / "fixtures/test.xml",
)
print(scanner_event)

TestCase.maxDiff = None
TestCase().assertDictEqual(test_scan_event, scanner_event)

0 comments on commit b256534

Please sign in to comment.