summaryrefslogtreecommitdiff
path: root/t/unit/test_pools.py
diff options
context:
space:
mode:
Diffstat (limited to 't/unit/test_pools.py')
-rw-r--r--t/unit/test_pools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/unit/test_pools.py b/t/unit/test_pools.py
index 9f33f4b8..eb2a556e 100644
--- a/t/unit/test_pools.py
+++ b/t/unit/test_pools.py
@@ -14,7 +14,7 @@ class test_ProducerPool:
def __init__(self, *args, **kwargs):
self.instance = Mock()
- pools.ProducerPool.__init__(self, *args, **kwargs)
+ super().__init__(*args, **kwargs)
def Producer(self, connection):
return self.instance