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.py.forms import (PyDepartmentSelect,
|
||||
PyNumberedDepartmentSelect)
|
||||
|
||||
@@ -6,7 +8,7 @@ from django.test import SimpleTestCase
|
||||
class PYLocalFlavorTests(SimpleTestCase):
|
||||
def test_PyDepartmentSelect(self):
|
||||
py = PyDepartmentSelect()
|
||||
out = u'''<select name="department">
|
||||
out = '''<select name="department">
|
||||
<option value="AG">Alto Paraguay</option>
|
||||
<option value="AA">Alto Paran\xe1</option>
|
||||
<option value="AM">Amambay</option>
|
||||
@@ -30,7 +32,7 @@ class PYLocalFlavorTests(SimpleTestCase):
|
||||
|
||||
def test_PyNumberedDepartmentSelect(self):
|
||||
py = PyNumberedDepartmentSelect()
|
||||
out = u'''<select name="department">
|
||||
out = '''<select name="department">
|
||||
<option value="CN">I Concepci\xf3n</option>
|
||||
<option value="SP">II San Pedro</option>
|
||||
<option value="CR">III Cordillera</option>
|
||||
|
||||
Reference in New Issue
Block a user