Skip to content

Commit

Permalink
Use unittest.mock instead of separate mock (#227)
Browse files Browse the repository at this point in the history
* Use unittest.mock instead of separate mock
  • Loading branch information
jonathanspw authored May 3, 2023
1 parent 289ecba commit 056d68f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
INSTALL_REQUIRES.append('funcsigs')


TESTS_REQUIRE = ['pytest', 'Mock', 'pycryptodome']
TESTS_REQUIRE = ['pytest', 'pycryptodome']

if py_version == (2, 6):
TESTS_REQUIRE.append('WebTest<2.0.24')
Expand Down
2 changes: 1 addition & 1 deletion tests/test_memcached.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding: utf-8
from beaker._compat import u_

import mock
import unittest.mock

from beaker.cache import Cache, CacheManager, util
from beaker.middleware import CacheMiddleware, SessionMiddleware
Expand Down

0 comments on commit 056d68f

Please sign in to comment.