summaryrefslogtreecommitdiff
path: root/kazoo/tests/test_partitioner.py
diff options
context:
space:
mode:
Diffstat (limited to 'kazoo/tests/test_partitioner.py')
-rw-r--r--kazoo/tests/test_partitioner.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/kazoo/tests/test_partitioner.py b/kazoo/tests/test_partitioner.py
index 02ce5ca..b2b91c8 100644
--- a/kazoo/tests/test_partitioner.py
+++ b/kazoo/tests/test_partitioner.py
@@ -1,8 +1,7 @@
import uuid
import threading
import time
-
-import mock
+from unittest.mock import patch
from kazoo.exceptions import LockTimeout
from kazoo.testing import KazooTestCase
@@ -154,7 +153,7 @@ class KazooPartitionerTests(KazooTestCase):
lock = locks.setdefault(path, self.client.handler.lock_object())
return SlowLockMock(self.client, lock)
- with mock.patch.object(self.client, "Lock", side_effect=get_lock):
+ with patch.object(self.client, "Lock", side_effect=get_lock):
# Create first partitioner. It will start to acquire the set
# members.
self.__create_partitioner(identifier="0", size=2)
@@ -192,7 +191,7 @@ class KazooPartitionerTests(KazooTestCase):
return SlowLockMock(self.client, lock, delay_time=delay_time)
- with mock.patch.object(self.client, "Lock", side_effect=get_lock):
+ with patch.object(self.client, "Lock", side_effect=get_lock):
# Create first partitioner. It will start to acquire the set
# members.
self.__create_partitioner(identifier="0", size=2)