Skip to content

Commit b6c39de

Browse files
committed
Fix names in do_request test.
1 parent 29cd54a commit b6c39de

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_otel.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def teardown_class(cls):
236236
"headers", [None, context], ids=["no context", "context"]
237237
)
238238
@pytest.mark.parametrize(
239-
("url", "text"),
239+
("url", "value"),
240240
[
241241
("https://127.0.0.1:8443/", "TRACE-ON"),
242242
("https://127.0.0.1:8443/context-ignore", ""),
@@ -254,12 +254,12 @@ def teardown_class(cls):
254254
"context-propagate",
255255
"trace-off",
256256
]
257-
+ ["trace-on bulk request"] * 10,
257+
+ ["trace-on bulk"] * 10,
258258
)
259259
def test_do_request(
260-
self, logger, response, http_ver, otel_mode, url, headers, text
260+
self, logger, response, http_ver, otel_mode, url, headers, value
261261
):
262-
assert response == text
262+
assert response == value
263263

264264

265265
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)