diff options
author | Loïc Hoguin <[email protected]> | 2013-04-24 20:33:51 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-04-24 20:33:51 +0200 |
commit | f329862384cafb534262c9e0f74fb71210b3a501 (patch) | |
tree | 622a8cc89bde5ef9261338a2254105b11a2820b2 /test/autobahn_SUITE_data/test.py | |
parent | ad91aaf81aa7fddba016262f1c8001d479a76be5 (diff) | |
download | cowboy-f329862384cafb534262c9e0f74fb71210b3a501.tar.gz cowboy-f329862384cafb534262c9e0f74fb71210b3a501.tar.bz2 cowboy-f329862384cafb534262c9e0f74fb71210b3a501.zip |
Only test Websocket RFC6455 in Autobahn from now on
Diffstat (limited to 'test/autobahn_SUITE_data/test.py')
-rwxr-xr-x | test/autobahn_SUITE_data/test.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/test/autobahn_SUITE_data/test.py b/test/autobahn_SUITE_data/test.py index 19c7669..991c667 100755 --- a/test/autobahn_SUITE_data/test.py +++ b/test/autobahn_SUITE_data/test.py @@ -39,13 +39,10 @@ def client_config(): 'options': {'failByDrop': False}, 'enable-ssl': False, 'servers': [{ - 'agent': 'Cowboy/10', + 'agent': 'Cowboy', 'url': 'ws://localhost:33080/echo', - 'options': {'version': 10}}, # hybi-10 - {'agent': 'Cowboy/18', - 'url': 'ws://localhost:33080/echo', - 'options': {'version': 18}} # RFC6455 - ], + 'options': {'version': 18} # RFC6455 + }], 'cases': ['*'], 'exclude-cases': [] } return base |