summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-07-20 18:06:28 +0100
committerRichard van der Hoff <richard@matrix.org>2016-07-20 18:06:28 +0100
commit40a1c96617fd5926b53f8993bb93af159af4d674 (patch)
treea7a3bf8ad3a6b4cd02d3dde34196626095b66191 /tests
parentMerge branch 'develop' into rav/get_devices_api (diff)
downloadsynapse-40a1c96617fd5926b53f8993bb93af159af4d674.tar.xz
Fix PEP8 errors
Diffstat (limited to 'tests')
-rw-r--r--tests/handlers/test_device.py2
-rw-r--r--tests/storage/test_devices.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/tests/handlers/test_device.py b/tests/handlers/test_device.py
index c2e12135d6..b05aa9bb55 100644
--- a/tests/handlers/test_device.py
+++ b/tests/handlers/test_device.py
@@ -126,4 +126,4 @@ class DeviceTestCase(unittest.TestCase):
             yield self.store.insert_client_ip(
                 types.UserID.from_string(user_id),
                 access_token, ip, "user_agent", device_id)
-            self.clock.advance_time(1000)
\ No newline at end of file
+            self.clock.advance_time(1000)
diff --git a/tests/storage/test_devices.py b/tests/storage/test_devices.py
index d3e9d97a9a..a6ce993375 100644
--- a/tests/storage/test_devices.py
+++ b/tests/storage/test_devices.py
@@ -15,8 +15,6 @@
 
 from twisted.internet import defer
 
-import synapse.server
-import synapse.types
 import tests.unittest
 import tests.utils