diff options
author | Magnus Klaar <[email protected]> | 2012-04-06 17:53:53 +0200 |
---|---|---|
committer | Magnus Klaar <[email protected]> | 2012-04-06 17:53:53 +0200 |
commit | 80c67bff33939a14e445ee93e37e8db5778fdfdc (patch) | |
tree | beeb090b1498fa98fbedda4c007c616a75dc416f /test | |
parent | 0b15ed914dd84e15a7d354807696d9bfa82bbebb (diff) | |
download | cowboy-80c67bff33939a14e445ee93e37e8db5778fdfdc.tar.gz cowboy-80c67bff33939a14e445ee93e37e8db5778fdfdc.tar.bz2 cowboy-80c67bff33939a14e445ee93e37e8db5778fdfdc.zip |
Update autobahn suite to use autobahntestsuite
Diffstat (limited to 'test')
-rwxr-xr-x | test/autobahn_SUITE_data/test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/autobahn_SUITE_data/test.py b/test/autobahn_SUITE_data/test.py index 422cb41..c528c64 100755 --- a/test/autobahn_SUITE_data/test.py +++ b/test/autobahn_SUITE_data/test.py @@ -29,7 +29,7 @@ def install_env(env): subprocess.check_call(["curl", "-sS", VIRTUALENV_URL, "-o", VIRTUALENV_BIN]) subprocess.check_call(["python", VIRTUALENV_BIN, env]) activate_env(env) - subprocess.check_call([PIP_BIN, "install", "Autobahn"]) + subprocess.check_call([PIP_BIN, "install", "AutobahnTestSuite"]) def client_config(): """ @@ -54,7 +54,7 @@ def run_test(env, config): activate_env(env) from twisted.python import log from twisted.internet import reactor - from autobahn.fuzzing import FuzzingClientFactory + from autobahntestsuite.fuzzing import FuzzingClientFactory os.chdir(AB_TESTS_PRIV) log.startLogging(sys.stdout) fuzzer = FuzzingClientFactory(config) |