Skip to content

Commit ee45e0f

Browse files
Fix test
1 parent 8cd8c81 commit ee45e0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

instrumentation/opentelemetry-instrumentation-django/tests/test_middleware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1087,7 +1087,7 @@ def test_wsgi_metrics_both_semconv_custom_attributes(self):
10871087
}
10881088
start = default_timer()
10891089
for _ in range(3):
1090-
response = Client().get("/span_name/1234/")
1090+
response = Client().get("/span_name_custom_attrs/1234/")
10911091
self.assertEqual(response.status_code, 200)
10921092
duration_s = max(default_timer() - start, 0)
10931093
duration = max(round(duration_s * 1000), 0)

0 commit comments

Comments
 (0)