Skip to content

Commit 44f5243

Browse files
committed
Format version resolver tests
1 parent 1e9c075 commit 44f5243

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/test_version_resolver.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ def test_routes_to_correct_dict_for_uk(self):
6767
with patch("modal.Dict.from_name", return_value=mock_dict) as from_name:
6868
_resolve_app_name("uk", "2.0.0", "staging")
6969

70-
from_name.assert_called_once_with("api-v2-uk-versions", environment_name="staging")
70+
from_name.assert_called_once_with(
71+
"api-v2-uk-versions", environment_name="staging"
72+
)
7173

7274
def test_lru_cache_returns_same_result(self):
7375
"""Repeated calls with same args hit cache, not Modal Dict."""

0 commit comments

Comments
 (0)