Skip to content

Commit

Permalink
Fix Falcon conditional.
Browse files Browse the repository at this point in the history
  • Loading branch information
wantsui committed Feb 3, 2025
1 parent 268d6aa commit cbcfd4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/contrib/falcon/test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def test_inferred_spans_api_gateway_default(self):
status_code=test_endpoint["status"],
url="local/",
start=1736973768.0,
is_distributed=test_headers == distributed_headers,
is_distributed=False,
distributed_trace_id=1,
distributed_parent_id=2,
distributed_sampling_decision=True,
Expand Down Expand Up @@ -397,7 +397,7 @@ def test_inferred_spans_api_gateway_distributed(self):
status_code=test_endpoint["status"],
url="local/",
start=1736973768.0,
is_distributed=test_headers == distributed_headers,
is_distributed=True,
distributed_trace_id=1,
distributed_parent_id=2,
distributed_sampling_decision=True,
Expand Down

0 comments on commit cbcfd4f

Please sign in to comment.