summaryrefslogtreecommitdiff
path: root/tests/check_framework/test_multi_db.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-19 12:16:04 -0500
committerTim Graham <timograham@gmail.com>2017-01-20 08:17:20 -0500
commit7aba69145dcb436539a7798086748b73a39121e5 (patch)
tree8f1f4edeec13f02916366e8c961c3028ec0b6560 /tests/check_framework/test_multi_db.py
parent042b7350a080cc964f913faf1cf7f0097f650a58 (diff)
Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.
Diffstat (limited to 'tests/check_framework/test_multi_db.py')
-rw-r--r--tests/check_framework/test_multi_db.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/check_framework/test_multi_db.py b/tests/check_framework/test_multi_db.py
index 700553f47b..3080b52fda 100644
--- a/tests/check_framework/test_multi_db.py
+++ b/tests/check_framework/test_multi_db.py
@@ -1,5 +1,7 @@
+from unittest import mock
+
from django.db import connections, models
-from django.test import TestCase, mock
+from django.test import TestCase
from django.test.utils import isolate_apps, override_settings