mirror of
https://github.com/graphql-python/graphene-django.git
synced 2025-07-13 09:42:32 +03:00
fix unit tests
This commit is contained in:
parent
71ba7fb82b
commit
6008e4d089
|
@ -4,7 +4,7 @@ from __future__ import absolute_import
|
|||
from django.db import models
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
CHOICES = ((1, u"1: this漢"), (2, _(u"2: that漢")), (3, "__amount__"))
|
||||
CHOICES = ((1, u"1: this漢"), (2, _(u"2: that漢")), (u'_3漢', "__amount__"))
|
||||
|
||||
|
||||
class Pet(models.Model):
|
||||
|
|
|
@ -172,9 +172,9 @@ type Reporter {
|
|||
}
|
||||
|
||||
enum ReporterAChoice {
|
||||
A_1_THIS
|
||||
A_2_THAT
|
||||
A__AMOUNT__
|
||||
A_1
|
||||
A_2
|
||||
A_3
|
||||
}
|
||||
|
||||
enum ReporterReporterType {
|
||||
|
|
Loading…
Reference in New Issue
Block a user