We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e9c075 commit 44f5243Copy full SHA for 44f5243
1 file changed
tests/test_version_resolver.py
@@ -67,7 +67,9 @@ def test_routes_to_correct_dict_for_uk(self):
67
with patch("modal.Dict.from_name", return_value=mock_dict) as from_name:
68
_resolve_app_name("uk", "2.0.0", "staging")
69
70
- from_name.assert_called_once_with("api-v2-uk-versions", environment_name="staging")
+ from_name.assert_called_once_with(
71
+ "api-v2-uk-versions", environment_name="staging"
72
+ )
73
74
def test_lru_cache_returns_same_result(self):
75
"""Repeated calls with same args hit cache, not Modal Dict."""
0 commit comments