summaryrefslogtreecommitdiff
path: root/tests/forms_tests
diff options
context:
space:
mode:
authorDavid Smith <39445562+smithdc1@users.noreply.github.com>2021-07-30 19:34:50 +0100
committerGitHub <noreply@github.com>2021-07-30 20:34:50 +0200
commitfbb1984046ae00bdf0b894a6b63294395da1cce8 (patch)
treee82e7b4c6bb04a035c62cacda31f302a6eefb006 /tests/forms_tests
parentf2ed2211c26ba375390cb76725c95ae970a0fd1d (diff)
Refs #32956 -- Updated words ending in -wards.
AP styleguide: Virtually none of the words ending with -wards end with an s.
Diffstat (limited to 'tests/forms_tests')
-rw-r--r--tests/forms_tests/field_tests/test_decimalfield.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/forms_tests/field_tests/test_decimalfield.py b/tests/forms_tests/field_tests/test_decimalfield.py
index df5b9052b2..f58c678176 100644
--- a/tests/forms_tests/field_tests/test_decimalfield.py
+++ b/tests/forms_tests/field_tests/test_decimalfield.py
@@ -103,7 +103,7 @@ class DecimalFieldTest(FormFieldAssertionsMixin, SimpleTestCase):
f = DecimalField(max_digits=3)
# Leading whole zeros "collapse" to one digit.
self.assertEqual(f.clean('0000000.10'), decimal.Decimal("0.1"))
- # But a leading 0 before the . doesn't count towards max_digits
+ # But a leading 0 before the . doesn't count toward max_digits
self.assertEqual(f.clean('0000000.100'), decimal.Decimal("0.100"))
# Only leading whole zeros "collapse" to one digit.
self.assertEqual(f.clean('000000.02'), decimal.Decimal('0.02'))