Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/parametric/test_headers_b3multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def enable_case_insensitive_b3multi() -> pytest.MarkDecorator:
return parametrize("library_env", [env1, env2])


@features.b3_headers_propagation
@features.b3multi_headers_propagation
@scenarios.parametric
class Test_Headers_B3multi:
@enable_b3multi()
Expand Down
10 changes: 9 additions & 1 deletion utils/_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def log_tracer_status_at_startup(test_object):

@staticmethod
def b3_headers_propagation(test_object):
"""B3 headers injection and extraction
"""B3 Single headers injection and extraction

https://feature-parity.us1.prod.dog/#/?feature=13
"""
Expand Down Expand Up @@ -2590,5 +2590,13 @@ def agent_data_integrity(test_object):
"""
return _mark_test_object(test_object, feature_id=495, owner=_Owner.agent_apm)

@staticmethod
def b3multi_headers_propagation(test_object):
"""B3 Multi headers injection and extraction

https://feature-parity.us1.prod.dog/#/?feature=496
"""
return _mark_test_object(test_object, feature_id=496, owner=_Owner.sdk_capabilities)


features = _Features()
Loading