@@ -106,12 +106,12 @@ def handler(request, context):
106
106
self .assertIs (span .kind , trace .SpanKind .SERVER )
107
107
108
108
# Check version and name in span's instrumentation info
109
- self .check_span_instrumentation_info (
109
+ self .assertEqualSpanInstrumentationInfo (
110
110
span , opentelemetry .instrumentation .grpc
111
111
)
112
112
113
113
# Check attributes
114
- self .assert_span_has_attributes (
114
+ self .assertSpanHasAttributes (
115
115
span ,
116
116
{
117
117
SpanAttributes .NET_PEER_IP : "[::1]" ,
@@ -187,12 +187,12 @@ def test_create_span(self):
187
187
self .assertIs (span .kind , trace .SpanKind .SERVER )
188
188
189
189
# Check version and name in span's instrumentation info
190
- self .check_span_instrumentation_info (
190
+ self .assertEqualSpanInstrumentationInfo (
191
191
span , opentelemetry .instrumentation .grpc
192
192
)
193
193
194
194
# Check attributes
195
- self .assert_span_has_attributes (
195
+ self .assertSpanHasAttributes (
196
196
span ,
197
197
{
198
198
SpanAttributes .NET_PEER_IP : "[::1]" ,
@@ -257,12 +257,12 @@ def SimpleMethod(self, request, context):
257
257
self .assertIs (parent_span .kind , trace .SpanKind .SERVER )
258
258
259
259
# Check version and name in span's instrumentation info
260
- self .check_span_instrumentation_info (
260
+ self .assertEqualSpanInstrumentationInfo (
261
261
parent_span , opentelemetry .instrumentation .grpc
262
262
)
263
263
264
264
# Check attributes
265
- self .assert_span_has_attributes (
265
+ self .assertSpanHasAttributes (
266
266
parent_span ,
267
267
{
268
268
SpanAttributes .NET_PEER_IP : "[::1]" ,
@@ -317,12 +317,12 @@ def test_create_span_streaming(self):
317
317
self .assertIs (span .kind , trace .SpanKind .SERVER )
318
318
319
319
# Check version and name in span's instrumentation info
320
- self .check_span_instrumentation_info (
320
+ self .assertEqualSpanInstrumentationInfo (
321
321
span , opentelemetry .instrumentation .grpc
322
322
)
323
323
324
324
# Check attributes
325
- self .assert_span_has_attributes (
325
+ self .assertSpanHasAttributes (
326
326
span ,
327
327
{
328
328
SpanAttributes .NET_PEER_IP : "[::1]" ,
@@ -386,12 +386,12 @@ def ServerStreamingMethod(self, request, context):
386
386
self .assertIs (parent_span .kind , trace .SpanKind .SERVER )
387
387
388
388
# Check version and name in span's instrumentation info
389
- self .check_span_instrumentation_info (
389
+ self .assertEqualSpanInstrumentationInfo (
390
390
parent_span , opentelemetry .instrumentation .grpc
391
391
)
392
392
393
393
# Check attributes
394
- self .assert_span_has_attributes (
394
+ self .assertSpanHasAttributes (
395
395
parent_span ,
396
396
{
397
397
SpanAttributes .NET_PEER_IP : "[::1]" ,
@@ -490,7 +490,7 @@ def handler(request, context):
490
490
self .assertIsNone (span2 .parent )
491
491
492
492
# check attributes
493
- self .assert_span_has_attributes (
493
+ self .assertSpanHasAttributes (
494
494
span ,
495
495
{
496
496
SpanAttributes .NET_PEER_IP : "[::1]" ,
@@ -562,7 +562,7 @@ def handler(request, context):
562
562
self .assertIsNone (span2 .parent )
563
563
564
564
# check attributes
565
- self .assert_span_has_attributes (
565
+ self .assertSpanHasAttributes (
566
566
span ,
567
567
{
568
568
SpanAttributes .NET_PEER_IP : "[::1]" ,
@@ -617,7 +617,7 @@ def handler(request, context):
617
617
self .assertIs (span .kind , trace .SpanKind .SERVER )
618
618
619
619
# Check version and name in span's instrumentation info
620
- self .check_span_instrumentation_info (
620
+ self .assertEqualSpanInstrumentationInfo (
621
621
span , opentelemetry .instrumentation .grpc
622
622
)
623
623
@@ -631,7 +631,7 @@ def handler(request, context):
631
631
)
632
632
633
633
# Check attributes
634
- self .assert_span_has_attributes (
634
+ self .assertSpanHasAttributes (
635
635
span ,
636
636
{
637
637
SpanAttributes .NET_PEER_IP : "[::1]" ,
0 commit comments