mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review.
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.contrib.localflavor.cl.forms import CLRutField, CLRegionSelect
|
||||
|
||||
from django.test import SimpleTestCase
|
||||
@@ -6,7 +8,7 @@ from django.test import SimpleTestCase
|
||||
class CLLocalFlavorTests(SimpleTestCase):
|
||||
def test_CLRegionSelect(self):
|
||||
f = CLRegionSelect()
|
||||
out = u'''<select name="foo">
|
||||
out = '''<select name="foo">
|
||||
<option value="RM">Regi\xf3n Metropolitana de Santiago</option>
|
||||
<option value="I">Regi\xf3n de Tarapac\xe1</option>
|
||||
<option value="II">Regi\xf3n de Antofagasta</option>
|
||||
@@ -26,8 +28,8 @@ class CLLocalFlavorTests(SimpleTestCase):
|
||||
self.assertHTMLEqual(f.render('foo', 'bar'), out)
|
||||
|
||||
def test_CLRutField(self):
|
||||
error_invalid = [u'The Chilean RUT is not valid.']
|
||||
error_format = [u'Enter a valid Chilean RUT. The format is XX.XXX.XXX-X.']
|
||||
error_invalid = ['The Chilean RUT is not valid.']
|
||||
error_format = ['Enter a valid Chilean RUT. The format is XX.XXX.XXX-X.']
|
||||
valid = {
|
||||
'11-6': '11-6',
|
||||
'116': '11-6',
|
||||
|
||||
Reference in New Issue
Block a user