We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feed69b commit 41ca902Copy full SHA for 41ca902
instrumentation/opentelemetry-instrumentation-aiohttp-client/tests/test_aiohttp_client_integration.py
@@ -14,7 +14,6 @@
14
15
import asyncio
16
import contextlib
17
-import sys
18
import typing
19
import unittest
20
import urllib.parse
@@ -117,10 +116,6 @@ def test_status_codes(self):
117
116
)
118
119
url = f"http://{host}:{port}/test-path?query=param#foobar"
120
- # if python version is < 3.8, then the url will be
121
- if sys.version_info[1] < 8:
122
- url = f"http://{host}:{port}/test-path#foobar"
123
-
124
self.assert_spans(
125
[
126
(
0 commit comments