Skip to content

Commit a837611

Browse files
author
Kevin Rauwolf
committed
Use assertEqual for test result check
1 parent 86a9776 commit a837611

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instrumentation/opentelemetry-instrumentation-grpc/tests/test_client_interceptor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def invoker(_request, _metadata):
296296
),
297297
invoker=invoker,
298298
)
299-
assert span_end_mock.call_count == 1
299+
self.assertEqual(span_end_mock.call_count, 1)
300300

301301
def test_client_interceptor_trace_context_propagation(
302302
self,

0 commit comments

Comments
 (0)