Skip to content

Commit efdd50f

Browse files
committed
fix: test failures due to return type changes
1 parent 146bd13 commit efdd50f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/unit/test_config.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -281,29 +281,29 @@ def test_config_user_agent(m_open, path_exists, config_string, expected_agent):
281281
[
282282
pytest.param(valid_config, False, id="default_value"),
283283
pytest.param(
284-
global_retry_transient_errors(True), "True", id="global_config_true"
284+
global_retry_transient_errors(True), True, id="global_config_true"
285285
),
286286
pytest.param(
287-
global_retry_transient_errors(False), "False", id="global_config_false"
287+
global_retry_transient_errors(False), False, id="global_config_false"
288288
),
289289
pytest.param(
290290
global_and_gitlab_retry_transient_errors(False, True),
291-
"True",
291+
True,
292292
id="gitlab_overrides_global_true",
293293
),
294294
pytest.param(
295295
global_and_gitlab_retry_transient_errors(True, False),
296-
"False",
296+
False,
297297
id="gitlab_overrides_global_false",
298298
),
299299
pytest.param(
300300
global_and_gitlab_retry_transient_errors(True, True),
301-
"True",
301+
True,
302302
id="gitlab_equals_global_true",
303303
),
304304
pytest.param(
305305
global_and_gitlab_retry_transient_errors(False, False),
306-
"False",
306+
False,
307307
id="gitlab_equals_global_false",
308308
),
309309
],

0 commit comments

Comments
 (0)