File tree 2 files changed +2
-4
lines changed
tests/opentelemetry-test-utils/src/opentelemetry/test
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
21
([ #4311 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4311 ) )
22
22
- sdk: fix serialization of logs severity_number field to int
23
23
([ #4324 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4324 ) )
24
+ - Remove ` TestBase.assertEqualSpanInstrumentationInfo ` method, use ` assertEqualSpanInstrumentationScope ` instead
25
+ ([ #4310 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4310 ) )
24
26
25
27
## Version 1.28.0/0.49b0 (2024-11-05)
26
28
Original file line number Diff line number Diff line change @@ -70,10 +70,6 @@ def get_finished_spans(self):
70
70
self , self .memory_exporter .get_finished_spans ()
71
71
)
72
72
73
- def assertEqualSpanInstrumentationInfo (self , span , module ):
74
- self .assertEqual (span .instrumentation_info .name , module .__name__ )
75
- self .assertEqual (span .instrumentation_info .version , module .__version__ )
76
-
77
73
def assertEqualSpanInstrumentationScope (self , span , module ):
78
74
self .assertEqual (span .instrumentation_scope .name , module .__name__ )
79
75
self .assertEqual (
You can’t perform that action at this time.
0 commit comments