fix unit tests

This commit is contained in:
Jason Kraus 2019-06-10 09:42:52 -07:00
parent 71ba7fb82b
commit 6008e4d089
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ from __future__ import absolute_import
from django.db import models from django.db import models
from django.utils.translation import ugettext_lazy as _ 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): class Pet(models.Model):

View File

@ -172,9 +172,9 @@ type Reporter {
} }
enum ReporterAChoice { enum ReporterAChoice {
A_1_THIS A_1
A_2_THAT A_2
A__AMOUNT__ A_3
} }
enum ReporterReporterType { enum ReporterReporterType {