summaryrefslogtreecommitdiff
path: root/tests/utils_tests
diff options
context:
space:
mode:
authorMin ho Kim <minho42@gmail.com>2019-07-20 00:45:13 +1000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-07-19 18:24:06 +0200
commit9f11939dd1477981da2f3a5487d80101faa21230 (patch)
tree7039e25f2e3fb76bba2cc69dab745645fe4a4c36 /tests/utils_tests
parentfc1182af01c391ce33d7fcf51c756829c6a11d5b (diff)
Fixed typos in comments and a test name.
Diffstat (limited to 'tests/utils_tests')
-rw-r--r--tests/utils_tests/test_numberformat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils_tests/test_numberformat.py b/tests/utils_tests/test_numberformat.py
index 1dac45e890..83e7d271b5 100644
--- a/tests/utils_tests/test_numberformat.py
+++ b/tests/utils_tests/test_numberformat.py
@@ -56,7 +56,7 @@ class TestNumberFormat(SimpleTestCase):
def test_float_numbers(self):
# A float without a fractional part (3.) results in a ".0" when no
- # deimal_pos is given. Contrast that with the Decimal('3.') case in
+ # decimal_pos is given. Contrast that with the Decimal('3.') case in
# test_decimal_numbers which doesn't return a fractional part.
self.assertEqual(nformat(3., '.'), '3.0')