diff --git a/tests/client/__init__.py b/tests/rest/__init__.py
similarity index 100%
rename from tests/client/__init__.py
rename to tests/rest/__init__.py
diff --git a/tests/rest/client/__init__.py b/tests/rest/client/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..1a84d94cd989161324481969f22f8f5f7841bcaa
--- /dev/null
+++ b/tests/rest/client/__init__.py
@@ -0,0 +1,14 @@
+# -*- coding: utf-8 -*-
+# Copyright 2015 OpenMarket Ltd
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
diff --git a/tests/client/v1/__init__.py b/tests/rest/client/v1/__init__.py
similarity index 100%
rename from tests/client/v1/__init__.py
rename to tests/rest/client/v1/__init__.py
diff --git a/tests/client/v1/test_events.py b/tests/rest/client/v1/test_events.py
similarity index 99%
rename from tests/client/v1/test_events.py
rename to tests/rest/client/v1/test_events.py
index e914b05a5265f80e3fc8ca813e9a7a1c7b17e26f..0384ffbb3d4ceabdff69defb9d8fd376699470fa 100644
--- a/tests/client/v1/test_events.py
+++ b/tests/rest/client/v1/test_events.py
@@ -25,7 +25,7 @@ import synapse.rest.client.v1.room
 
 from synapse.server import HomeServer
 
-from ...utils import MockHttpResource, SQLiteMemoryDbPool, MockKey
+from ....utils import MockHttpResource, SQLiteMemoryDbPool, MockKey
 from .utils import RestTestCase
 
 from mock import Mock, NonCallableMock
diff --git a/tests/client/v1/test_presence.py b/tests/rest/client/v1/test_presence.py
similarity index 99%
rename from tests/client/v1/test_presence.py
rename to tests/rest/client/v1/test_presence.py
index e7d636c74d51cabf66d20cab24fade5835e6d7c0..0b6f7cfccb07fee23564ce2459d1c417a54cb1ec 100644
--- a/tests/client/v1/test_presence.py
+++ b/tests/rest/client/v1/test_presence.py
@@ -20,7 +20,7 @@ from twisted.internet import defer
 
 from mock import Mock
 
-from ...utils import MockHttpResource, MockKey
+from ....utils import MockHttpResource, MockKey
 
 from synapse.api.constants import PresenceState
 from synapse.handlers.presence import PresenceHandler
diff --git a/tests/client/v1/test_profile.py b/tests/rest/client/v1/test_profile.py
similarity index 99%
rename from tests/client/v1/test_profile.py
rename to tests/rest/client/v1/test_profile.py
index 1182cc54eb983d0f86a4d278d74d884ba77f6ade..47cfb10a6d0e81f1e780995d9ac4aee24c096059 100644
--- a/tests/client/v1/test_profile.py
+++ b/tests/rest/client/v1/test_profile.py
@@ -20,7 +20,7 @@ from twisted.internet import defer
 
 from mock import Mock, NonCallableMock
 
-from ...utils import MockHttpResource, MockKey
+from ....utils import MockHttpResource, MockKey
 
 from synapse.api.errors import SynapseError, AuthError
 from synapse.server import HomeServer
diff --git a/tests/client/v1/test_rooms.py b/tests/rest/client/v1/test_rooms.py
similarity index 99%
rename from tests/client/v1/test_rooms.py
rename to tests/rest/client/v1/test_rooms.py
index 4d529ef007303eff7d5cc087412ecad3bb66891d..12f80405418cf3f0147ef5b78f0f27be6b69dc3b 100644
--- a/tests/client/v1/test_rooms.py
+++ b/tests/rest/client/v1/test_rooms.py
@@ -30,7 +30,7 @@ import json
 import urllib
 import types
 
-from ...utils import MockHttpResource, SQLiteMemoryDbPool, MockKey
+from ....utils import MockHttpResource, SQLiteMemoryDbPool, MockKey
 from .utils import RestTestCase
 
 from mock import Mock, NonCallableMock
diff --git a/tests/client/v1/test_typing.py b/tests/rest/client/v1/test_typing.py
similarity index 98%
rename from tests/client/v1/test_typing.py
rename to tests/rest/client/v1/test_typing.py
index af3a9a6c1c9b2f3ddf0d05d84aaf6e819ecbf7dd..647bcebfd8e280c4b5eb0dc8767a163e0bd60559 100644
--- a/tests/client/v1/test_typing.py
+++ b/tests/rest/client/v1/test_typing.py
@@ -21,7 +21,7 @@ from twisted.internet import defer
 import synapse.rest.client.v1.room
 from synapse.server import HomeServer
 
-from ...utils import MockHttpResource, MockClock, SQLiteMemoryDbPool, MockKey
+from ....utils import MockHttpResource, MockClock, SQLiteMemoryDbPool, MockKey
 from .utils import RestTestCase
 
 from mock import Mock, NonCallableMock
diff --git a/tests/client/v1/utils.py b/tests/rest/client/v1/utils.py
similarity index 100%
rename from tests/client/v1/utils.py
rename to tests/rest/client/v1/utils.py