We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 388253e commit 83857bfCopy full SHA for 83857bf
graphene/types/tests/test_argument.py
@@ -66,11 +66,11 @@ def test_to_arguments_raises_if_inputfield():
66
67
def test_argument_with_lazy_type():
68
MyType = object()
69
- arg = Field(lambda: MyType)
+ arg = Argument(lambda: MyType)
70
assert arg.type == MyType
71
72
73
def test_argument_with_lazy_partial_type():
74
75
- arg = Field(partial(lambda: MyType))
+ arg = Argument(partial(lambda: MyType))
76
0 commit comments