Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
phacops committed Nov 6, 2023
1 parent ccd7aeb commit 0cee30e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/datasets/test_spans_payloads.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,21 @@

# some time in way in the future
start_time_ms = 4111111111111
received = 1234567890
duration_ms = 1234560123
project_id = 1234567890123456

required_fields = {
"trace_id": "12345678901234567890123456789012",
"span_id": "1234567890123456",
"project_id": project_id,
"start_timestamp_ms": start_time_ms,
"duration_ms": duration_ms,
"exclusive_time_ms": 1234567890123,
"is_segment": True,
"project_id": project_id,
"received": received,
"retention_days": 90,
"sentry_tags": {},
"span_id": "1234567890123456",
"start_timestamp_ms": start_time_ms,
"trace_id": "12345678901234567890123456789012",
}

expected_for_required_fields = {
Expand Down

0 comments on commit 0cee30e

Please sign in to comment.