Skip to content

Commit ee6dbee

Browse files
committed
test(transport): Restore accidentally removed comments
Restore comments accidentally removed during a previous commit.
1 parent 748764e commit ee6dbee

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
@@ -619,9 +619,9 @@ def test_record_lost_event_transaction_item(capturing_server, make_client, span_
619619
transport.record_lost_event(reason="test", item=transaction_item)
620620
client.flush()
621621

622-
(captured,) = capturing_server.captured
622+
(captured,) = capturing_server.captured # Should only be one envelope
623623
envelope = captured.envelope
624-
(item,) = envelope.items
624+
(item,) = envelope.items # Envelope should only have one item
625625

626626
assert item.type == "client_report"
627627

0 commit comments

Comments
 (0)