@@ -491,7 +491,7 @@ async def make_sync_money_transport(aiohttp_server):
491
491
492
492
493
493
@pytest .mark .asyncio
494
- async def test_custom_scalar_in_output_with_transport (event_loop , aiohttp_server ):
494
+ async def test_custom_scalar_in_output_with_transport (aiohttp_server ):
495
495
496
496
transport = await make_money_transport (aiohttp_server )
497
497
@@ -509,7 +509,7 @@ async def test_custom_scalar_in_output_with_transport(event_loop, aiohttp_server
509
509
510
510
511
511
@pytest .mark .asyncio
512
- async def test_custom_scalar_in_input_query_with_transport (event_loop , aiohttp_server ):
512
+ async def test_custom_scalar_in_input_query_with_transport (aiohttp_server ):
513
513
514
514
transport = await make_money_transport (aiohttp_server )
515
515
@@ -531,9 +531,7 @@ async def test_custom_scalar_in_input_query_with_transport(event_loop, aiohttp_s
531
531
532
532
533
533
@pytest .mark .asyncio
534
- async def test_custom_scalar_in_input_variable_values_with_transport (
535
- event_loop , aiohttp_server
536
- ):
534
+ async def test_custom_scalar_in_input_variable_values_with_transport (aiohttp_server ):
537
535
538
536
transport = await make_money_transport (aiohttp_server )
539
537
@@ -556,7 +554,7 @@ async def test_custom_scalar_in_input_variable_values_with_transport(
556
554
557
555
@pytest .mark .asyncio
558
556
async def test_custom_scalar_in_input_variable_values_split_with_transport (
559
- event_loop , aiohttp_server
557
+ aiohttp_server ,
560
558
):
561
559
562
560
transport = await make_money_transport (aiohttp_server )
@@ -581,7 +579,7 @@ async def test_custom_scalar_in_input_variable_values_split_with_transport(
581
579
582
580
583
581
@pytest .mark .asyncio
584
- async def test_custom_scalar_serialize_variables (event_loop , aiohttp_server ):
582
+ async def test_custom_scalar_serialize_variables (aiohttp_server ):
585
583
586
584
transport = await make_money_transport (aiohttp_server )
587
585
@@ -603,7 +601,7 @@ async def test_custom_scalar_serialize_variables(event_loop, aiohttp_server):
603
601
604
602
605
603
@pytest .mark .asyncio
606
- async def test_custom_scalar_serialize_variables_no_schema (event_loop , aiohttp_server ):
604
+ async def test_custom_scalar_serialize_variables_no_schema (aiohttp_server ):
607
605
608
606
transport = await make_money_transport (aiohttp_server )
609
607
@@ -623,7 +621,7 @@ async def test_custom_scalar_serialize_variables_no_schema(event_loop, aiohttp_s
623
621
624
622
@pytest .mark .asyncio
625
623
async def test_custom_scalar_serialize_variables_schema_from_introspection (
626
- event_loop , aiohttp_server
624
+ aiohttp_server ,
627
625
):
628
626
629
627
transport = await make_money_transport (aiohttp_server )
@@ -656,7 +654,7 @@ async def test_custom_scalar_serialize_variables_schema_from_introspection(
656
654
657
655
658
656
@pytest .mark .asyncio
659
- async def test_update_schema_scalars (event_loop , aiohttp_server ):
657
+ async def test_update_schema_scalars (aiohttp_server ):
660
658
661
659
transport = await make_money_transport (aiohttp_server )
662
660
@@ -735,7 +733,7 @@ def test_update_schema_scalars_scalar_type_is_not_a_scalar_in_schema():
735
733
@pytest .mark .asyncio
736
734
@pytest .mark .requests
737
735
async def test_custom_scalar_serialize_variables_sync_transport (
738
- event_loop , aiohttp_server , run_sync_test
736
+ aiohttp_server , run_sync_test
739
737
):
740
738
741
739
server , transport = await make_sync_money_transport (aiohttp_server )
@@ -754,13 +752,13 @@ def test_code():
754
752
print (f"result = { result !r} " )
755
753
assert result ["toEuros" ] == 5
756
754
757
- await run_sync_test (event_loop , server , test_code )
755
+ await run_sync_test (server , test_code )
758
756
759
757
760
758
@pytest .mark .asyncio
761
759
@pytest .mark .requests
762
760
async def test_custom_scalar_serialize_variables_sync_transport_2 (
763
- event_loop , aiohttp_server , run_sync_test
761
+ aiohttp_server , run_sync_test
764
762
):
765
763
server , transport = await make_sync_money_transport (aiohttp_server )
766
764
@@ -783,7 +781,7 @@ def test_code():
783
781
assert results [0 ]["toEuros" ] == 5
784
782
assert results [1 ]["toEuros" ] == 5
785
783
786
- await run_sync_test (event_loop , server , test_code )
784
+ await run_sync_test (server , test_code )
787
785
788
786
789
787
def test_serialize_value_with_invalid_type ():
@@ -818,7 +816,7 @@ def test_serialize_value_with_nullable_type():
818
816
819
817
820
818
@pytest .mark .asyncio
821
- async def test_gql_cli_print_schema (event_loop , aiohttp_server , capsys ):
819
+ async def test_gql_cli_print_schema (aiohttp_server , capsys ):
822
820
823
821
from gql .cli import get_parser , main
824
822
0 commit comments