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 7fee4da commit bca3fa6Copy full SHA for bca3fa6
tests/test_backend.py
@@ -31,7 +31,7 @@ def test_split_servers(get_cluster_info):
31
backend._lib.Client = Mock()
32
assert backend._cache
33
get_cluster_info.assert_called_once_with(
34
- 'h', '0', socket._GLOBAL_DEFAULT_TIMEOUT)
+ 'h', '0', False, socket._GLOBAL_DEFAULT_TIMEOUT)
35
backend._lib.Client.assert_called_once_with(
36
servers,
37
deserializer=deserialize_pickle,
@@ -69,7 +69,7 @@ def test_node_info_cache(get_cluster_info):
69
eq_(backend._cache.set.call_count, 2)
70
71
72
73
74
75
@patch('django.conf.settings', global_settings)
0 commit comments