Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitefdd50f

Browse files
committed
fix: test failures due to return type changes
1 parent146bd13 commitefdd50f

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)

[8]ページ先頭

©2009-2025 Movatter.jp