Fix tests

This commit is contained in:
Anthony Young 2012-05-01 14:38:25 -07:00
parent f66b93255f
commit 96250f8bfc
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ as taken from http://docs.python.org/dev/library/ssl.html#certificates
import os, sys, select, optparse
sys.path.insert(0,os.path.dirname(__file__) + "/../")
from websocket import WebSocketServer
from websockify.websocket import WebSocketServer
class WebSocketEcho(WebSocketServer):
"""

View File

@ -8,7 +8,7 @@ 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__) + "/../")
from websocket import WebSocketServer
from websockify.websocket import WebSocketServer
class WebSocketLoad(WebSocketServer):

View File

@ -7,7 +7,7 @@ import sys, os, socket, ssl, time, traceback
from select import select
sys.path.insert(0,os.path.dirname(__file__) + "/../")
from websocket import WebSocketServer
from websockify.websocket import WebSocketServer
if __name__ == '__main__':
print "val: hixie | hybi_base64 | hybi_binary"