@@ -393,9 +393,11 @@ def static_method():
393
393
),
394
394
pytest .param (
395
395
GetFrame ().instance_method_wrapped ()(),
396
- "wrapped"
397
- if sys .version_info < (3 , 11 )
398
- else "GetFrame.instance_method_wrapped.<locals>.wrapped" ,
396
+ (
397
+ "wrapped"
398
+ if sys .version_info < (3 , 11 )
399
+ else "GetFrame.instance_method_wrapped.<locals>.wrapped"
400
+ ),
399
401
id = "instance_method_wrapped" ,
400
402
),
401
403
pytest .param (
@@ -405,9 +407,11 @@ def static_method():
405
407
),
406
408
pytest .param (
407
409
GetFrame ().class_method_wrapped ()(),
408
- "wrapped"
409
- if sys .version_info < (3 , 11 )
410
- else "GetFrame.class_method_wrapped.<locals>.wrapped" ,
410
+ (
411
+ "wrapped"
412
+ if sys .version_info < (3 , 11 )
413
+ else "GetFrame.class_method_wrapped.<locals>.wrapped"
414
+ ),
411
415
id = "class_method_wrapped" ,
412
416
),
413
417
pytest .param (
@@ -422,9 +426,11 @@ def static_method():
422
426
),
423
427
pytest .param (
424
428
GetFrame ().inherited_instance_method_wrapped ()(),
425
- "wrapped"
426
- if sys .version_info < (3 , 11 )
427
- else "GetFrameBase.inherited_instance_method_wrapped.<locals>.wrapped" ,
429
+ (
430
+ "wrapped"
431
+ if sys .version_info < (3 , 11 )
432
+ else "GetFrameBase.inherited_instance_method_wrapped.<locals>.wrapped"
433
+ ),
428
434
id = "instance_method_wrapped" ,
429
435
),
430
436
pytest .param (
@@ -434,16 +440,20 @@ def static_method():
434
440
),
435
441
pytest .param (
436
442
GetFrame ().inherited_class_method_wrapped ()(),
437
- "wrapped"
438
- if sys .version_info < (3 , 11 )
439
- else "GetFrameBase.inherited_class_method_wrapped.<locals>.wrapped" ,
443
+ (
444
+ "wrapped"
445
+ if sys .version_info < (3 , 11 )
446
+ else "GetFrameBase.inherited_class_method_wrapped.<locals>.wrapped"
447
+ ),
440
448
id = "inherited_class_method_wrapped" ,
441
449
),
442
450
pytest .param (
443
451
GetFrame ().inherited_static_method (),
444
- "inherited_static_method"
445
- if sys .version_info < (3 , 11 )
446
- else "GetFrameBase.inherited_static_method" ,
452
+ (
453
+ "inherited_static_method"
454
+ if sys .version_info < (3 , 11 )
455
+ else "GetFrameBase.inherited_static_method"
456
+ ),
447
457
id = "inherited_static_method" ,
448
458
),
449
459
],
0 commit comments