From 427a08106b8c27457a383557aba707a3abe0a46f Mon Sep 17 00:00:00 2001 From: Alec Aivazis <alec@aivazis.com> Date: Sun, 22 May 2016 17:17:07 -0700 Subject: [PATCH] fixed linting error --- graphene/core/tests/test_schema.py | 1 + 1 file changed, 1 insertion(+) diff --git a/graphene/core/tests/test_schema.py b/graphene/core/tests/test_schema.py index c1df7eaf..8fca0c3d 100644 --- a/graphene/core/tests/test_schema.py +++ b/graphene/core/tests/test_schema.py @@ -119,6 +119,7 @@ def test_auto_camelcase_off(): assert not result.errors assert result.data == expected + def test_schema_register(): schema = Schema(name='My own schema')