diff options
Diffstat (limited to 'test/test_polaris_stuff.py')
-rwxr-xr-x | test/test_polaris_stuff.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_polaris_stuff.py b/test/test_polaris_stuff.py index f3c8e6a..b921891 100755 --- a/test/test_polaris_stuff.py +++ b/test/test_polaris_stuff.py @@ -7,13 +7,13 @@ sys.path.extend([ ) ]) -import src.polaris as polaris +import src.syncleo as polaris if __name__ == '__main__': - sc = [cl for cl in polaris.protocol.CmdIncomingMessage.__subclasses__() - if cl is not polaris.protocol.SimpleBooleanMessage] - sc.extend(polaris.protocol.SimpleBooleanMessage.__subclasses__()) + sc = [cl for cl in syncleo.protocol.CmdIncomingMessage.__subclasses__() + if cl is not syncleo.protocol.SimpleBooleanMessage] + sc.extend(syncleo.protocol.SimpleBooleanMessage.__subclasses__()) for cl in sc: # if cl == polaris.protocol.HandshakeMessage: # print('skip') |