Skip to content

Commit 714a0e8

Browse files
committed
fix stupid mistake
1 parent e73f2be commit 714a0e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instrumentation/opentelemetry-instrumentation-aiohttp-client/tests/test_aiohttp_client_integration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def test_status_codes(self):
120120
url = f"http://{host}:{port}/test-path?query=param#foobar"
121121
# if python version is < 3.8, then the url will be
122122
if sys.version_info[1] < 8:
123-
url = "http://{host}:{port}/test-path#foobar"
123+
url = f"http://{host}:{port}/test-path#foobar"
124124

125125
self.assert_spans(
126126
[

0 commit comments

Comments
 (0)