From 83857bfcfe02c9eb7d9baee367d54c0e2d887e9d Mon Sep 17 00:00:00 2001 From: Daniel Johnston Date: Fri, 5 May 2017 14:38:46 -0700 Subject: [PATCH] Fixed typo. --- graphene/types/tests/test_argument.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphene/types/tests/test_argument.py b/graphene/types/tests/test_argument.py index 256df86b..e485c01b 100644 --- a/graphene/types/tests/test_argument.py +++ b/graphene/types/tests/test_argument.py @@ -66,11 +66,11 @@ def test_to_arguments_raises_if_inputfield(): def test_argument_with_lazy_type(): MyType = object() - arg = Field(lambda: MyType) + arg = Argument(lambda: MyType) assert arg.type == MyType def test_argument_with_lazy_partial_type(): MyType = object() - arg = Field(partial(lambda: MyType)) + arg = Argument(partial(lambda: MyType)) assert arg.type == MyType \ No newline at end of file