File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -178,12 +178,12 @@ def returns_true_for_a_list_wrapped_type():
178
178
assert is_list_type (GraphQLList (ObjectType )) is True
179
179
assert_list_type (GraphQLList (ObjectType ))
180
180
181
- def returns_false_for_an_unwrapped_type ():
181
+ def returns_false_for_a_unwrapped_type ():
182
182
assert is_list_type (ObjectType ) is False
183
183
with raises (TypeError ):
184
184
assert_list_type (ObjectType )
185
185
186
- def returns_true_for_a_non_list_wrapped_type ():
186
+ def returns_false_for_a_non_list_wrapped_type ():
187
187
assert is_list_type (GraphQLNonNull (GraphQLList (ObjectType ))) is False
188
188
with raises (TypeError ):
189
189
assert_list_type (GraphQLNonNull (GraphQLList (ObjectType )))
@@ -198,7 +198,7 @@ def returns_false_for_an_unwrapped_type():
198
198
with raises (TypeError ):
199
199
assert_non_null_type (ObjectType )
200
200
201
- def returns_true_for_a_not_non_null_wrapped_type ():
201
+ def returns_false_for_a_not_non_null_wrapped_type ():
202
202
assert is_non_null_type (GraphQLList (GraphQLNonNull (ObjectType ))) is False
203
203
with raises (TypeError ):
204
204
assert_non_null_type (GraphQLList (GraphQLNonNull (ObjectType )))
You can’t perform that action at this time.
0 commit comments