Skip to content

Commit b96a9d4

Browse files
committed
Fix typo in test name
1 parent 5e49352 commit b96a9d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/type/test_predicate.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def returns_true_for_custom_scalar():
106106
assert is_scalar_type(ScalarType) is True
107107
assert_scalar_type(ScalarType)
108108

109-
def returns_fals_for_scalar_class_rather_than_instance():
109+
def returns_false_for_scalar_class_rather_than_instance():
110110
assert is_scalar_type(GraphQLScalarType) is False
111111
with raises(TypeError):
112112
assert_scalar_type(GraphQLScalarType)
@@ -143,7 +143,7 @@ def returns_true_for_specified_scalars():
143143
def returns_false_for_custom_scalar():
144144
assert is_specified_scalar_type(ScalarType) is False
145145

146-
def returns_fals_for_scalar_class_rather_than_specified_instance():
146+
def returns_false_for_scalar_class_rather_than_specified_instance():
147147
assert is_specified_scalar_type(GraphQLScalarType) is False
148148

149149
def returns_false_for_wrapped_specified_scalar():

0 commit comments

Comments
 (0)