UT: Remove superfluous Asserts in test_network_scanner.py

This commit is contained in:
Mike Salvatore 2021-12-13 07:07:43 -05:00
parent 88608c1cf1
commit 11e3c5d6e4
1 changed files with 0 additions and 2 deletions

View File

@ -67,12 +67,10 @@ def assert_dot_1(ip, ping_scan_data, port_scan_data):
psd_445 = port_scan_data[445]
psd_3389 = port_scan_data[3389]
assert psd_445.status == PortStatus.OPEN
assert psd_445.port == 445
assert psd_445.banner == "SMB BANNER"
assert psd_445.service == "tcp-445"
assert psd_3389.status == PortStatus.OPEN
assert psd_3389.port == 3389
assert psd_3389.banner == ""
assert psd_3389.service == "tcp-3389"