@@ -281,29 +281,29 @@ def test_config_user_agent(m_open, path_exists, config_string, expected_agent):
281
281
[
282
282
pytest .param (valid_config ,False ,id = "default_value" ),
283
283
pytest .param (
284
- global_retry_transient_errors (True )," True" ,id = "global_config_true"
284
+ global_retry_transient_errors (True ),True ,id = "global_config_true"
285
285
),
286
286
pytest .param (
287
- global_retry_transient_errors (False )," False" ,id = "global_config_false"
287
+ global_retry_transient_errors (False ),False ,id = "global_config_false"
288
288
),
289
289
pytest .param (
290
290
global_and_gitlab_retry_transient_errors (False ,True ),
291
- " True" ,
291
+ True ,
292
292
id = "gitlab_overrides_global_true" ,
293
293
),
294
294
pytest .param (
295
295
global_and_gitlab_retry_transient_errors (True ,False ),
296
- " False" ,
296
+ False ,
297
297
id = "gitlab_overrides_global_false" ,
298
298
),
299
299
pytest .param (
300
300
global_and_gitlab_retry_transient_errors (True ,True ),
301
- " True" ,
301
+ True ,
302
302
id = "gitlab_equals_global_true" ,
303
303
),
304
304
pytest .param (
305
305
global_and_gitlab_retry_transient_errors (False ,False ),
306
- " False" ,
306
+ False ,
307
307
id = "gitlab_equals_global_false" ,
308
308
),
309
309
],