@@ -501,9 +501,9 @@ def test_read_response_returns_cached_reply(self, mock_cache, mock_connection):
501
501
)
502
502
proxy_connection .send_command (* ["GET" , "foo" ], ** {"keys" : ["foo" ]})
503
503
assert proxy_connection .read_response () == b"bar"
504
+ assert proxy_connection ._current_command_cache_key is None
504
505
assert proxy_connection .read_response () == b"bar"
505
506
506
- mock_connection .read_response .assert_called_once ()
507
507
mock_cache .set .assert_has_calls (
508
508
[
509
509
call (
@@ -530,9 +530,6 @@ def test_read_response_returns_cached_reply(self, mock_cache, mock_connection):
530
530
call (CacheKey (command = "GET" , redis_keys = ("foo" ,))),
531
531
call (CacheKey (command = "GET" , redis_keys = ("foo" ,))),
532
532
call (CacheKey (command = "GET" , redis_keys = ("foo" ,))),
533
- call (CacheKey (command = "GET" , redis_keys = ("foo" ,))),
534
- call (CacheKey (command = "GET" , redis_keys = ("foo" ,))),
535
- call (CacheKey (command = "GET" , redis_keys = ("foo" ,))),
536
533
]
537
534
)
538
535
0 commit comments