Skip to content

Commit 5911f2f

Browse files
committed
try again
1 parent 311965f commit 5911f2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python_anvil/tests/test_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ def test_get_behavior(mock_request, anvil, url, should_raise):
414414
if should_raise:
415415
with pytest.raises(
416416
ValueError,
417-
match="URL must start with one of: https://app.useanvil.com"
417+
match="URL must start with one of: https://app.useanvil.com",
418418
):
419419
rest_client.get(url)
420420
else:
@@ -442,7 +442,7 @@ def test_post_behavior(mock_request, anvil, url, should_raise):
442442
if should_raise:
443443
with pytest.raises(
444444
ValueError,
445-
match="URL must start with one of: https://app.useanvil.com"
445+
match="URL must start with one of: https://app.useanvil.com",
446446
):
447447
rest_client.post(url, data={})
448448
else:

0 commit comments

Comments
 (0)