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,4 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.contrib.localflavor.fr.forms import (FRZipCodeField,
|
||||
FRPhoneNumberField, FRDepartmentSelect)
|
||||
|
||||
@@ -7,7 +9,7 @@ from django.test import SimpleTestCase
|
||||
|
||||
class FRLocalFlavorTests(SimpleTestCase):
|
||||
def test_FRZipCodeField(self):
|
||||
error_format = [u'Enter a zip code in the format XXXXX.']
|
||||
error_format = ['Enter a zip code in the format XXXXX.']
|
||||
valid = {
|
||||
'75001': '75001',
|
||||
'93200': '93200',
|
||||
@@ -19,7 +21,7 @@ class FRLocalFlavorTests(SimpleTestCase):
|
||||
self.assertFieldOutput(FRZipCodeField, valid, invalid)
|
||||
|
||||
def test_FRPhoneNumberField(self):
|
||||
error_format = [u'Phone numbers must be in 0X XX XX XX XX format.']
|
||||
error_format = ['Phone numbers must be in 0X XX XX XX XX format.']
|
||||
valid = {
|
||||
'01 55 44 58 64': '01 55 44 58 64',
|
||||
'0155445864': '01 55 44 58 64',
|
||||
@@ -35,7 +37,7 @@ class FRLocalFlavorTests(SimpleTestCase):
|
||||
|
||||
def test_FRDepartmentSelect(self):
|
||||
f = FRDepartmentSelect()
|
||||
out = u'''<select name="dep">
|
||||
out = '''<select name="dep">
|
||||
<option value="01">01 - Ain</option>
|
||||
<option value="02">02 - Aisne</option>
|
||||
<option value="03">03 - Allier</option>
|
||||
|
||||
Reference in New Issue
Block a user