1
0
mirror of https://github.com/django/django.git synced 2025-10-27 23:56:08 +00:00

[1.9.x] Fixed #25668 -- Misc spelling errors

Backport of 3ee18400ae from master
This commit is contained in:
Ville Skyttä
2015-11-03 11:55:10 +02:00
committed by Tim Graham
parent ed3e066cc1
commit a3bbc38d54
12 changed files with 18 additions and 18 deletions

View File

@@ -186,7 +186,7 @@ class UtilsTests(SimpleTestCase):
self.assertEqual(display_value, '12345')
@override_settings(USE_L10N=True, USE_THOUSAND_SEPARATOR=True)
def test_number_formats_with_thousand_seperator_display_for_field(self):
def test_number_formats_with_thousand_separator_display_for_field(self):
display_value = display_for_field(12345.6789, models.FloatField(), self.empty_value)
self.assertEqual(display_value, '12,345.6789')