diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-02-09 14:16:36 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-02-09 14:16:36 +0000 |
commit | ab3c897ce123506bfff8a6a67e0530ca90ae2f15 (patch) | |
tree | c0f9707c6102a12f32979b1d92fdcccfb99616aa /tests/api/test_auth.py | |
parent | Modify auth.get_user_by_req for authing appservices directly. (diff) | |
download | synapse-ab3c897ce123506bfff8a6a67e0530ca90ae2f15.tar.xz |
Remove unused imports.
Diffstat (limited to 'tests/api/test_auth.py')
-rw-r--r-- | tests/api/test_auth.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/api/test_auth.py b/tests/api/test_auth.py index 1d8367ce42..4f83db5e84 100644 --- a/tests/api/test_auth.py +++ b/tests/api/test_auth.py @@ -15,11 +15,11 @@ from tests import unittest from twisted.internet import defer -from mock import Mock, NonCallableMock +from mock import Mock from synapse.api.auth import Auth from synapse.api.errors import AuthError -from synapse.types import UserID + class AuthTestCase(unittest.TestCase): |