Skip to content

Commit 19f7211

Browse files
committed
test(transport): Restore accidentally removed comments
Restore comments accidentally removed during a previous commit.
1 parent e58a590 commit 19f7211

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_transport.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,9 +673,9 @@ def test_record_lost_event_transaction_item(capturing_server, make_client, span_
673673
transport.record_lost_event(reason="test", item=transaction_item)
674674
client.flush()
675675

676-
(captured,) = capturing_server.captured
676+
(captured,) = capturing_server.captured # Should only be one envelope
677677
envelope = captured.envelope
678-
(item,) = envelope.items
678+
(item,) = envelope.items # Envelope should only have one item
679679

680680
assert item.type == "client_report"
681681

0 commit comments

Comments
 (0)