Skip to content

Commit 83857bf

Browse files
Daniel JohnstonDaniel Johnston
authored andcommitted
Fixed typo.
1 parent 388253e commit 83857bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graphene/types/tests/test_argument.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ def test_to_arguments_raises_if_inputfield():
6666

6767
def test_argument_with_lazy_type():
6868
MyType = object()
69-
arg = Field(lambda: MyType)
69+
arg = Argument(lambda: MyType)
7070
assert arg.type == MyType
7171

7272

7373
def test_argument_with_lazy_partial_type():
7474
MyType = object()
75-
arg = Field(partial(lambda: MyType))
75+
arg = Argument(partial(lambda: MyType))
7676
assert arg.type == MyType

0 commit comments

Comments
 (0)