requirements: Re-drop direct dependency on mock.

This was dropped in commit 840cf4b885
(#15091), but commit 1432067959
(#17047) mistakenly reintroduced it.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2021-04-15 18:22:29 -07:00 committed by Tim Abbott
parent 1bdcb11543
commit f59f2ca165
1 changed files with 1 additions and 2 deletions

View File

@ -4,10 +4,9 @@ import random
import shutil
from functools import partial
from typing import Any, Callable, Dict, List, Optional, Set, Tuple, Type, Union, cast
from unittest import TestLoader, TestSuite, runner
from unittest import TestLoader, TestSuite, mock, runner
from unittest.result import TestResult
import mock
from django.conf import settings
from django.db import connections
from django.test import TestCase