diff --git a/graphene_django/tests/models.py b/graphene_django/tests/models.py index 4fe546d..2d9b794 100644 --- a/graphene_django/tests/models.py +++ b/graphene_django/tests/models.py @@ -3,7 +3,7 @@ from __future__ import absolute_import from django.db import models from django.utils.translation import ugettext_lazy as _ -CHOICES = ((1, "this"), (2, _("that"))) +CHOICES = ((1, "1: this"), (2, _("2: that"))) class Pet(models.Model): diff --git a/graphene_django/tests/test_types.py b/graphene_django/tests/test_types.py index 8a8643b..c8fb33b 100644 --- a/graphene_django/tests/test_types.py +++ b/graphene_django/tests/test_types.py @@ -172,8 +172,8 @@ type Reporter { } enum ReporterAChoice { - A_1 - A_2 + A_1_THIS + A_2_THAT } enum ReporterReporterType {