Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tssweeney committed Oct 11, 2024
1 parent 2ac9593 commit aa406ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/trace/test_op_coroutines.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def sync_with_exception():
res, call = sync_with_exception.call()
assert isinstance(call, Call)
assert call.exception is not None
assert res == None
assert res is None


def test_sync_with_exception_method(client):
Expand All @@ -187,7 +187,7 @@ def sync_with_exception(self):
res, call = test_inst.sync_with_exception.call(test_inst)
assert isinstance(call, Call)
assert call.exception is not None
assert res == None
assert res is None


@pytest.mark.asyncio
Expand All @@ -201,7 +201,7 @@ async def async_with_exception():
res, call = await async_with_exception.call()
assert isinstance(call, Call)
assert call.exception is not None
assert res == None
assert res is None


@pytest.mark.asyncio
Expand All @@ -217,4 +217,4 @@ async def async_with_exception(self):
res, call = await test_inst.async_with_exception.call(test_inst)
assert isinstance(call, Call)
assert call.exception is not None
assert res == None
assert res is None

0 comments on commit aa406ed

Please sign in to comment.