From 48874670ee6767ef82d8fa7d7ef934d0bb2961d6 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Thu, 4 Jan 2024 08:50:28 +0100 Subject: [PATCH] Fix failing test for redis caused by cross-merging 2 PRs The two related PRs #3656i1 and #36562 were merged without rebasing and it caused wrong expectation in the test after username had been added in the client in one of them. --- tests/providers/redis/hooks/test_redis.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/providers/redis/hooks/test_redis.py b/tests/providers/redis/hooks/test_redis.py index de352a9a20de9..1216dc6b64131 100644 --- a/tests/providers/redis/hooks/test_redis.py +++ b/tests/providers/redis/hooks/test_redis.py @@ -109,6 +109,7 @@ def test_get_conn_with_deprecated_extra_config(self, mock_get_connection, mock_r mock_redis.assert_called_once_with( host=connection.host, password=connection.password, + username=None, port=connection.port, db=connection.extra_dejson["db"], ssl=connection.extra_dejson["ssl"],