summaryrefslogtreecommitdiff
path: root/tests/model_fields
diff options
context:
space:
mode:
authorDavid Sanders <shang.xiao.sanders@gmail.com>2023-05-24 18:59:55 +1000
committerGitHub <noreply@github.com>2023-05-24 10:59:55 +0200
commit0c1518ee429b01c145cf5b34eab01b0b92f8c246 (patch)
treefd873ce8aabd03208aa033a73c8bbe418b1b2ff9 /tests/model_fields
parent8b053c1e3c3dc50a73e471e4edcd2171fc24a7ec (diff)
Fixed #34590 -- Reverted "Refs #33308 -- Improved adapting DecimalField values to decimal."
This reverts 7990d254b0af158baf827fafbd90fe8e890f23bd. Thanks Marc Odermatt for the report.
Diffstat (limited to 'tests/model_fields')
-rw-r--r--tests/model_fields/test_decimalfield.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/model_fields/test_decimalfield.py b/tests/model_fields/test_decimalfield.py
index 88c6878f59..588bb64a3a 100644
--- a/tests/model_fields/test_decimalfield.py
+++ b/tests/model_fields/test_decimalfield.py
@@ -91,7 +91,10 @@ class DecimalFieldTests(TestCase):
Really big values can be used in a filter statement.
"""
# This should not crash.
- Foo.objects.filter(d__gte=100000000000)
+ self.assertSequenceEqual(Foo.objects.filter(d__gte=100000000000), [])
+
+ def test_lookup_decimal_larger_than_max_digits(self):
+ self.assertSequenceEqual(Foo.objects.filter(d__lte=Decimal("123456")), [])
def test_max_digits_validation(self):
field = models.DecimalField(max_digits=2)