@@ -177,7 +177,7 @@ def test_it_rejects_a_schema_which_defines_a_builtin_type(self):
177
177
178
178
# noinspection PyUnusedLocal
179
179
def test_it_rejects_a_schema_which_have_same_named_objects_implementing_an_interface (
180
- self
180
+ self ,
181
181
):
182
182
AnotherInterface = GraphQLInterfaceType (
183
183
name = "AnotherInterface" ,
@@ -384,7 +384,7 @@ def test_rejects_an_object_with_incorrectly_typed_field_args(self):
384
384
)
385
385
386
386
def test_rejects_an_object_with_incorrectly_typed_field_args_with_an_invalid_value (
387
- self
387
+ self ,
388
388
):
389
389
with raises (AssertionError ) as excinfo :
390
390
assert schema_with_field_type (
@@ -422,7 +422,7 @@ def test_accepts_an_object_type_with_array_interface(self):
422
422
)
423
423
424
424
def test_accepts_an_object_type_with_interfaces_as_a_function_returning_an_array (
425
- self
425
+ self ,
426
426
):
427
427
AnotherInterfaceType = GraphQLInterfaceType (
428
428
name = "AnotherInterface" ,
@@ -455,7 +455,7 @@ def test_rejects_an_object_type_with_incorrectly_typed_interfaces(self):
455
455
)
456
456
457
457
def test_rejects_an_object_type_with_interfaces_as_a_function_returning_an_incorrect_type (
458
- self
458
+ self ,
459
459
):
460
460
with raises (AssertionError ) as excinfo :
461
461
schema_with_field_type (
@@ -613,7 +613,7 @@ def test_rejects_an_input_object_type_with_incorrectly_typed_field_value(self):
613
613
)
614
614
615
615
def test_rejects_an_input_object_type_with_fields_function_returning_incorrectly_typed_field_value (
616
- self
616
+ self ,
617
617
):
618
618
with raises (AssertionError ) as excinfo :
619
619
schema_with_input_object (
@@ -641,7 +641,7 @@ def test_rejects_an_input_object_type_with_empty_fields(self):
641
641
)
642
642
643
643
def test_rejects_an_input_object_type_with_a_field_function_that_returns_nothing (
644
- self
644
+ self ,
645
645
):
646
646
with raises (AssertionError ) as excinfo :
647
647
schema_with_input_object (
@@ -655,7 +655,7 @@ def test_rejects_an_input_object_type_with_a_field_function_that_returns_nothing
655
655
)
656
656
657
657
def test_rejects_an_input_object_type_with_a_field_function_that_returns_empty (
658
- self
658
+ self ,
659
659
):
660
660
with raises (AssertionError ) as excinfo :
661
661
schema_with_input_object (
@@ -728,7 +728,7 @@ def test_accepts_an_interface_with_implementing_type_defining_is_type_of(self):
728
728
)
729
729
730
730
def test_accepts_an_interface_type_defining_resolve_type_with_implementing_type_defining_is_type_of (
731
- self
731
+ self ,
732
732
):
733
733
AnotherInterfaceType = GraphQLInterfaceType (
734
734
name = "AnotherInterface" ,
@@ -758,7 +758,7 @@ def test_rejects_an_interface_type_with_an_incorrect_type_for_resolve_type(self)
758
758
)
759
759
760
760
def test_rejects_an_interface_type_not_defining_resolve_type_with_implementing_type_not_defining_is_type_of (
761
- self
761
+ self ,
762
762
):
763
763
AnotherInterfaceType = GraphQLInterfaceType (
764
764
name = "AnotherInterface" , fields = {"f" : GraphQLField (GraphQLString )}
@@ -796,7 +796,7 @@ def test_accepts_a_union_of_object_types_defining_is_type_of(self):
796
796
)
797
797
798
798
def test_accepts_a_union_type_defning_resolve_type_of_objects_defning_is_type_of (
799
- self
799
+ self ,
800
800
):
801
801
assert schema_with_field_type (
802
802
GraphQLUnionType (
@@ -817,7 +817,7 @@ def test_rejects_an_interface_type_with_an_incorrect_type_for_resolve_type(self)
817
817
)
818
818
819
819
def test_rejects_a_union_type_not_defining_resolve_type_of_object_types_not_defining_is_type_of (
820
- self
820
+ self ,
821
821
):
822
822
with raises (AssertionError ) as excinfo :
823
823
schema_with_field_type (
@@ -896,7 +896,7 @@ def test_rejects_a_scalar_type_defining_parse_literal_but_not_parse_value(self):
896
896
)
897
897
898
898
def test_rejects_a_scalar_type_defining_parse_literal_and_parse_value_with_an_incorrect_type (
899
- self
899
+ self ,
900
900
):
901
901
with raises (AssertionError ) as excinfo :
902
902
schema_with_field_type (
@@ -1370,7 +1370,7 @@ def test_accepts_an_object_which_implements_an_interface(self):
1370
1370
assert schema_with_field_type (AnotherObject )
1371
1371
1372
1372
def test_accepts_an_object_which_implements_an_interface_along_with_more_fields (
1373
- self
1373
+ self ,
1374
1374
):
1375
1375
AnotherInterface = GraphQLInterfaceType (
1376
1376
name = "AnotherInterface" ,
@@ -1396,7 +1396,7 @@ def test_accepts_an_object_which_implements_an_interface_along_with_more_fields(
1396
1396
assert schema_with_field_type (AnotherObject )
1397
1397
1398
1398
def test_accepts_an_object_which_implements_an_interface_field_along_with_more_arguments (
1399
- self
1399
+ self ,
1400
1400
):
1401
1401
AnotherInterface = GraphQLInterfaceType (
1402
1402
name = "AnotherInterface" ,
@@ -1425,7 +1425,7 @@ def test_accepts_an_object_which_implements_an_interface_field_along_with_more_a
1425
1425
assert schema_with_field_type (AnotherObject )
1426
1426
1427
1427
def test_rejects_an_object_which_implements_an_interface_field_along_with_additional_required_arguments (
1428
- self
1428
+ self ,
1429
1429
):
1430
1430
AnotherInterface = GraphQLInterfaceType (
1431
1431
name = "AnotherInterface" ,
0 commit comments