Skip to content

Commit 40a23e7

Browse files
committed
rename duplicate test methods
1 parent 0e9e625 commit 40a23e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: instrumentation/opentelemetry-instrumentation-boto3sqs/tests/test_boto3sqs_instrumentation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,13 @@ def test_instrument_api_before_resource_init(self) -> None:
9999
sqs = _make_sqs_resource(session=session)
100100
self._assert_instrumented(sqs.meta.client)
101101

102-
def test_instrument_api_after_client_init(self) -> None:
102+
def test_instrument_api_after_resource_init(self) -> None:
103103
for session in (False, True):
104104
sqs = _make_sqs_resource(session=session)
105105
with self._active_instrumentor():
106106
self._assert_instrumented(sqs.meta.client)
107107

108-
def test_instrument_multiple_clients(self):
108+
def test_instrument_multiple_resources(self):
109109
for session in (False, True):
110110
with self._active_instrumentor():
111111
self._assert_instrumented(

0 commit comments

Comments
 (0)