From 1bcc1ef3288becdf7def4b1e2b596276ee164975 Mon Sep 17 00:00:00 2001 From: Jason Kraus Date: Fri, 31 May 2019 11:03:26 -0700 Subject: [PATCH] fix python 2 test regression --- graphene_django/tests/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django/tests/models.py b/graphene_django/tests/models.py index 1d456b2..957d356 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, "1: this漢"), (2, _("2: that漢"))) +CHOICES = ((1, u"1: this漢"), (2, _(u"2: that漢"))) class Pet(models.Model):