From e2284fefb52954b4b012db1d565931f087aaf3d0 Mon Sep 17 00:00:00 2001 From: Niall Date: Mon, 6 Mar 2017 18:20:31 +0000 Subject: [PATCH] Clean up --- .gitignore | 1 - examples/starwars/tests/test_mutation.py | 1 - graphene_django/tests/models.py | 1 - 3 files changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4e81c34..0b25625 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,6 @@ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] -.virtualenv # C extensions *.so diff --git a/examples/starwars/tests/test_mutation.py b/examples/starwars/tests/test_mutation.py index 7c8019a..aa312ff 100644 --- a/examples/starwars/tests/test_mutation.py +++ b/examples/starwars/tests/test_mutation.py @@ -75,6 +75,5 @@ def test_mutations(): } } result = schema.execute(query) - print(result.data) assert not result.errors assert result.data == expected diff --git a/graphene_django/tests/models.py b/graphene_django/tests/models.py index 03ca59d..0c62f28 100644 --- a/graphene_django/tests/models.py +++ b/graphene_django/tests/models.py @@ -45,7 +45,6 @@ class Article(models.Model): ], default='es') importance = models.IntegerField('Importance', null=True, blank=True, choices=[(1, u'Very important'), (2, u'Not as important')]) - tag = models.CharField(max_length=100) def __str__(self): # __unicode__ on Python 2 return self.headline