Fix ws_generic_monitor

Signed-off-by: Matthew Stidham <stidmatt@protonmail.com>
This commit is contained in:
Matthew Stidham
2021-03-11 15:32:03 -08:00
parent c1a0261f90
commit a1108e7c23

View File

@@ -11,6 +11,7 @@ import json
if 'py-json' not in sys.path:
sys.path.append('../py-json')
from ws_generic_monitor import WS_Listener
from realm import Realm
reference = "test_ipv4_connection.py"
@@ -35,7 +36,7 @@ class GenericMonitorTest(Realm):
pass
def main():
WS_Listener(lfclient_host="localhost", _scriptname=reference, _callback=TestRun)
WS_Listener(lfclient_host="localhost", _scriptname=reference)#, _callback=TestRun)
if __name__ == "__main__":