Browse Source

Only test Websocket RFC6455 in Autobahn from now on

Loïc Hoguin 12 years ago
parent
commit
f329862384
1 changed files with 3 additions and 6 deletions
  1. 3 6
      test/autobahn_SUITE_data/test.py

+ 3 - 6
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