summaryrefslogtreecommitdiff
path: root/tests/shell
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/shell
parent042b7350a080cc964f913faf1cf7f0097f650a58 (diff)
downloaddjango-7aba69145dcb436539a7798086748b73a39121e5.tar.gz
Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.
Diffstat (limited to 'tests/shell')
-rw-r--r--tests/shell/tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/shell/tests.py b/tests/shell/tests.py
index f2d1d0e392..6d39af3a71 100644
--- a/tests/shell/tests.py
+++ b/tests/shell/tests.py
@@ -1,9 +1,10 @@
import sys
import unittest
+from unittest import mock
from django import __version__
from django.core.management import CommandError, call_command
-from django.test import SimpleTestCase, mock
+from django.test import SimpleTestCase
from django.test.utils import captured_stdin, captured_stdout, patch_logger