summaryrefslogtreecommitdiff
path: root/tests/db_functions/math/test_atan2.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/db_functions/math/test_atan2.py')
-rw-r--r--tests/db_functions/math/test_atan2.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/db_functions/math/test_atan2.py b/tests/db_functions/math/test_atan2.py
index ca12e64479..ce9dd53187 100644
--- a/tests/db_functions/math/test_atan2.py
+++ b/tests/db_functions/math/test_atan2.py
@@ -14,9 +14,11 @@ class ATan2Tests(TestCase):
obj = IntegerModel.objects.annotate(
null_atan2_sn=ATan2('small', 'normal'),
null_atan2_nb=ATan2('normal', 'big'),
+ null_atan2_bn=ATan2('big', 'normal'),
).first()
self.assertIsNone(obj.null_atan2_sn)
self.assertIsNone(obj.null_atan2_nb)
+ self.assertIsNone(obj.null_atan2_bn)
def test_decimal(self):
DecimalModel.objects.create(n1=Decimal('-9.9'), n2=Decimal('4.6'))