From aff33bc54987f05c2bbf1a2123f21d13a1e29cbb Mon Sep 17 00:00:00 2001 From: Carlos Martinez Date: Thu, 26 Oct 2017 14:12:11 -0500 Subject: [PATCH] Fix issue with tests --- graphene_django/tests/test_auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django/tests/test_auth.py b/graphene_django/tests/test_auth.py index e2acb7c..e00438f 100644 --- a/graphene_django/tests/test_auth.py +++ b/graphene_django/tests/test_auth.py @@ -22,7 +22,7 @@ from ..rest_framework.mutation import SerializerMutation pytestmark = pytest.mark.django_db -if sys.version_info < (3, 0): +if sys.version_info > (3, 0): from unittest.mock import Mock else: from mock import Mock