|
@ -966,7 +966,7 @@ class TestAsyncServer(unittest.TestCase): |
|
|
assert result['result'] == ('disconnect', '1', '/foo') |
|
|
assert result['result'] == ('disconnect', '1', '/foo') |
|
|
|
|
|
|
|
|
def test_bad_namespace_handler(self, eio): |
|
|
def test_bad_namespace_handler(self, eio): |
|
|
class Dummy(object): |
|
|
class Dummy: |
|
|
pass |
|
|
pass |
|
|
|
|
|
|
|
|
class SyncNS(namespace.Namespace): |
|
|
class SyncNS(namespace.Namespace): |
|
@ -1007,7 +1007,7 @@ class TestAsyncServer(unittest.TestCase): |
|
|
# Warning: this test cannot run in parallel with other tests, as it |
|
|
# Warning: this test cannot run in parallel with other tests, as it |
|
|
# changes the JSON encoding/decoding functions |
|
|
# changes the JSON encoding/decoding functions |
|
|
|
|
|
|
|
|
class CustomJSON(object): |
|
|
class CustomJSON: |
|
|
@staticmethod |
|
|
@staticmethod |
|
|
def dumps(*args, **kwargs): |
|
|
def dumps(*args, **kwargs): |
|
|
return '*** encoded ***' |
|
|
return '*** encoded ***' |
|
|