summaryrefslogtreecommitdiff
path: root/tests/load.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/load.py')
-rwxr-xr-xtests/load.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/load.py b/tests/load.py
index 0da7265..e1354c9 100755
--- a/tests/load.py
+++ b/tests/load.py
@@ -7,8 +7,8 @@ given a sequence number. Any errors are reported and counted.
'''
import sys, os, select, random, time, optparse
-sys.path.insert(0,os.path.dirname(__file__) + "/../websockify")
-from websocket import WebSocketServer
+sys.path.insert(0,os.path.join(os.path.dirname(__file__), ".."))
+from websockify.websocket import WebSocketServer
class WebSocketLoad(WebSocketServer):