Skip to content

Commit 8f83a2d

Browse files
test(playstation): Fix failing test due to hard coded ts and clock drift correction (#5513)
1 parent 5d470d1 commit 8f83a2d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration/test_playstation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ def test_event_merging(
610610
"type": "error",
611611
"logger": "",
612612
"platform": "native",
613-
"timestamp": 1759841673.0,
613+
"timestamp": mock.ANY,
614614
"received": time_within_delta(),
615615
"release": "test-app@1.0.0",
616616
"environment": "integration-test",
@@ -685,6 +685,8 @@ def test_event_merging(
685685
"bytes.ingested.event.minidump": 60446,
686686
"bytes.ingested.event.attachment": 158008,
687687
},
688+
"_meta": mock.ANY,
689+
"errors": mock.ANY,
688690
}
689691

690692
assert sorted(event["attachments"], key=lambda x: x["name"]) == attachments(

0 commit comments

Comments
 (0)