Switch test dependency to mox3

mox is pretty much unmaintained these days, however the OpenStack
project are actively maintaining mox3 (a Python 3 compatibile fork
with some other improvements).

websockify seems quite happy to use mox3 instead, so switch the
test dependency and associated imports to use mox3.
This commit is contained in:
James Page 2016-06-30 09:59:50 +01:00
parent f23780eb42
commit 156b08ae68
3 changed files with 3 additions and 3 deletions

View File

@ -1,2 +1,2 @@
mox mox3
nose nose

View File

@ -22,7 +22,7 @@ import select
import shutil import shutil
import socket import socket
import ssl import ssl
import stubout from mox3 import stubout
import sys import sys
import tempfile import tempfile
import unittest import unittest

View File

@ -20,7 +20,7 @@ import unittest
import unittest import unittest
import socket import socket
import stubout from mox3 import stubout
from websockify import websocket from websockify import websocket
from websockify import websocketproxy from websockify import websocketproxy