We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 795482c commit 8340458Copy full SHA for 8340458
1 file changed
tests/test_web_api.py
@@ -87,6 +87,7 @@ async def test_code_login_v4_flow(mock_rest) -> None:
87
ud = await api.code_login_v4(4123, "US", 1)
88
assert ud == UserData.from_dict(USER_DATA)
89
90
+
91
async def test_url_cycling(mock_rest) -> None:
92
"""Test that we cycle through the URLs correctly."""
93
# Clear mock rest so that we can override the patches.
@@ -182,6 +183,7 @@ async def test_url_cycling(mock_rest) -> None:
182
183
# Make sure we just have the three we tested for above.
184
assert len(mock_rest.requests) == 3
185
186
187
async def test_thirty_thirty_cycling(mock_rest) -> None:
188
"""Test that we cycle through the URLs correctly when users have deleted accounts in higher prio regions."""
189
0 commit comments