diff --git a/test/testclient.py b/test/testclient.py
deleted file mode 100644
index 02dca7b45595a2d8a8296281e107188da2b724f3..0000000000000000000000000000000000000000
--- a/test/testclient.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# general
-from omnibot import run_dummybot
-                    
-if __name__ == '__main__':
-    # Server settings
-    HOST = "localhost"
-
-    if len(sys.argv) > 1:
-        # If an input is given to the script, it will be interpreted as the intended
-        # IP-address. Baseline is localhost.
-        HOST = sys.argv[1]
-    
-    print(f"HOST: \t {HOST}")
-    run_dummybot(HOST)
\ No newline at end of file