It helps to import things

This commit is contained in:
Travis Ralston 2018-10-24 13:32:13 -06:00
parent 4acb6fe8a3
commit 81880beff4

View file

@ -12,6 +12,22 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import json
import six
from mock import Mock
from twisted.test.proto_helpers import MemoryReactorClock
from synapse.api.errors import InteractiveAuthIncompleteError
from synapse.http.server import JsonResource
from synapse.rest.client.v2_alpha.register import register_servlets
from synapse.util import Clock
from tests import unittest
from tests.server import make_request, render, setup_test_homeserver
class TermsTestCase(unittest.HomeserverTestCase):
servlets = [register_servlets]