From 0e68f2cc790b3f289dca5824a26ea5878e67571e Mon Sep 17 00:00:00 2001 From: Kesav Kolla <(kesav@314ecorp.com)> Date: Thu, 12 Mar 2020 00:57:22 +0530 Subject: [PATCH] Made user info not required for RedisDSN. This will fix the issue #1275 --- tests/test_networks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_networks.py b/tests/test_networks.py index baf9f5a354..3c34489b55 100644 --- a/tests/test_networks.py +++ b/tests/test_networks.py @@ -321,7 +321,7 @@ class Model(BaseModel): assert m.a.password == 'pass' m = Model(a='redis://:pass@localhost:5432') - assert m.a == 'redis://:pass@localhost:5432' + assert m.a == 'redis://:pass@localhost:5432' assert m.a.password == 'pass' with pytest.raises(ValidationError) as exc_info: