mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-25 15:41:06 +00:00
Don't use reactor, since it's not necessary.
This commit is contained in:
parent
f09aa8c796
commit
5fa8c78f97
@ -25,7 +25,7 @@ from treq.testing import StubTreq
|
|||||||
from klein import Klein
|
from klein import Klein
|
||||||
from hyperlink import DecodedURL
|
from hyperlink import DecodedURL
|
||||||
|
|
||||||
from .common import AsyncTestCase, SyncTestCase
|
from .common import SyncTestCase
|
||||||
from ..storage.server import StorageServer
|
from ..storage.server import StorageServer
|
||||||
from ..storage.http_server import (
|
from ..storage.http_server import (
|
||||||
HTTPServer,
|
HTTPServer,
|
||||||
@ -164,7 +164,7 @@ class TestApp(object):
|
|||||||
return "BAD: {}".format(authorization)
|
return "BAD: {}".format(authorization)
|
||||||
|
|
||||||
|
|
||||||
class RoutingTests(AsyncTestCase):
|
class RoutingTests(SyncTestCase):
|
||||||
"""
|
"""
|
||||||
Tests for the HTTP routing infrastructure.
|
Tests for the HTTP routing infrastructure.
|
||||||
"""
|
"""
|
||||||
@ -220,7 +220,7 @@ class HttpTestFixture(Fixture):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class GenericHTTPAPITests(AsyncTestCase):
|
class GenericHTTPAPITests(SyncTestCase):
|
||||||
"""
|
"""
|
||||||
Tests of HTTP client talking to the HTTP server, for generic HTTP API
|
Tests of HTTP client talking to the HTTP server, for generic HTTP API
|
||||||
endpoints and concerns.
|
endpoints and concerns.
|
||||||
@ -272,7 +272,7 @@ class GenericHTTPAPITests(AsyncTestCase):
|
|||||||
self.assertEqual(version, expected_version)
|
self.assertEqual(version, expected_version)
|
||||||
|
|
||||||
|
|
||||||
class ImmutableHTTPAPITests(AsyncTestCase):
|
class ImmutableHTTPAPITests(SyncTestCase):
|
||||||
"""
|
"""
|
||||||
Tests for immutable upload/download APIs.
|
Tests for immutable upload/download APIs.
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user