Skip to content

Commit 76405ce

Browse files
committed
lint
1 parent 3876aeb commit 76405ce

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_notificationapi_query_logs.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"envIdFilter": ["6ok6imq9unr2budgiebjdaa6oi"]
2828
}
2929

30+
3031
@pytest.mark.asyncio
3132
@pytest.mark.parametrize(
3233
"func,params",
@@ -40,6 +41,7 @@ async def test_makes_one_post_api_call(respx_mock, func, params):
4041
await getattr(notificationapi, func)(params)
4142
assert route.called
4243

44+
4345
@pytest.mark.asyncio
4446
@pytest.mark.parametrize(
4547
"func,params",
@@ -53,6 +55,7 @@ async def test_passes_params_as_json_body(respx_mock, func, params):
5355
await getattr(notificationapi, func)(params)
5456
assert json.loads(route.calls.last.request.content) == params
5557

58+
5659
@pytest.mark.asyncio
5760
@pytest.mark.parametrize(
5861
"func,params",
@@ -66,6 +69,7 @@ async def test_logs_on_202(respx_mock, caplog, func, params):
6669
await getattr(notificationapi, func)(params)
6770
assert "NotificationAPI request ignored." in caplog.text
6871

72+
6973
@pytest.mark.asyncio
7074
@pytest.mark.parametrize(
7175
"func,params",

0 commit comments

Comments
 (0)