From da3769b9028f135ea966a880f2015b0b71c72ac5 Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Mon, 6 Jun 2016 01:30:29 -0700 Subject: [PATCH] Fix test case --- graphene/types/tests/test_structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene/types/tests/test_structures.py b/graphene/types/tests/test_structures.py index 3d402c99..a787ca82 100644 --- a/graphene/types/tests/test_structures.py +++ b/graphene/types/tests/test_structures.py @@ -20,7 +20,7 @@ def test_list_lambda(): def test_list_list(): list_instance = List(List(String())) - assert isinstance(list_instance, List) + assert isinstance(list_instance, GraphQLList) assert isinstance(list_instance.of_type, GraphQLList) assert list_instance.of_type.of_type == GraphQLString