Agent: Fix incorrect port status in MockPuppet

This commit is contained in:
Mike Salvatore 2021-12-10 10:11:49 -05:00
parent 8d361777bc
commit b3c520f272
1 changed files with 1 additions and 1 deletions

View File

@ -279,4 +279,4 @@ class MockPuppet(IPuppet):
def _get_empty_results(port: int):
return PortScanData(port, False, None, None)
return PortScanData(port, PortStatus.CLOSED, None, None)