We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b91427 commit 1eeb0c6Copy full SHA for 1eeb0c6
tests/tests_async/test_connection_string.py
@@ -14,7 +14,9 @@
14
@pytest.mark.asyncio
15
async def test_connection_strings(connection_string: str):
16
cf = pool.get_connection_factory(
17
- path="django_valkey.async_cache.pool.AsyncConnectionFactory", options={}
+ options={
18
+ "CONNECTION_FACTORY": "django_valkey.async_cache.pool.AsyncConnectionFactory"
19
+ }
20
)
21
res = cf.make_connection_params(connection_string)
22
assert res["url"] == connection_string
0 commit comments