Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
fix pool test
Browse files Browse the repository at this point in the history
  • Loading branch information
popravich committed Nov 17, 2017
1 parent b4d01d5 commit 1d3d6bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/pool_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from unittest.mock import patch

from aioredis import (
RedisPool,
ReplyError,
PoolClosedError,
ConnectionClosedError,
Expand All @@ -15,7 +14,7 @@


def _assert_defaults(pool):
assert isinstance(pool, RedisPool)
assert isinstance(pool, ConnectionsPool)
assert pool.minsize == 1
assert pool.maxsize == 10
assert pool.size == 1
Expand Down

0 comments on commit 1d3d6bb

Please sign in to comment.