We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d00dd10 commit 7fb4bafCopy full SHA for 7fb4baf
tests/client/chats_api/test_create_thread.py
@@ -205,7 +205,10 @@ async def test__create_thread__botx_error_raised(
205
# - Act -
206
async with lifespan_wrapper(built_bot) as bot:
207
with pytest.raises(expected_exc_type) as exc:
208
- await bot.create_thread(bot_id=bot_id, sync_id=UUID(sync_id))
+ await bot.create_thread(
209
+ bot_id=bot_id,
210
+ sync_id=UUID(sync_id),
211
+ )
212
213
# - Assert -
214
assert endpoint.called
0 commit comments