summaryrefslogtreecommitdiff
path: root/tests/validators/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validators/tests.py')
-rw-r--r--tests/validators/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validators/tests.py b/tests/validators/tests.py
index c94ec251d6..d6d013c026 100644
--- a/tests/validators/tests.py
+++ b/tests/validators/tests.py
@@ -284,7 +284,7 @@ TEST_DATA = [
(DecimalValidator(decimal_places=2, max_digits=10), Decimal(value), ValidationError)
for value in (
'NaN', '-NaN', '+NaN', 'sNaN', '-sNaN', '+sNaN',
- 'Inf', '-Inf', '+Inf', 'Infinity', '-Infinity', '-Infinity',
+ 'Inf', '-Inf', '+Inf', 'Infinity', '-Infinity', '+Infinity',
)
],