From b14c4e168d5e2b6d8591f56d294dda9d44059606 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Fri, 25 Oct 2024 16:52:04 +0200 Subject: [PATCH] Updated comment in test --- tests/test_mathematical.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_mathematical.py b/tests/test_mathematical.py index 210ed850c9f..85ec668c9ec 100644 --- a/tests/test_mathematical.py +++ b/tests/test_mathematical.py @@ -1927,8 +1927,8 @@ def test_zeros(self, dt): assert_equal(result, expected) else: # numpy.spacing(-0.0) == numpy.spacing(0.0), i.e. NumPy returns - # positive value, while for any other negative input the result - # will be negative value (looks as a bug in NumPy) + # positive value (looks as a bug in NumPy), because for any other + # negative input the NumPy result will be also a negative value. expected[1] *= -1 assert_equal(result, expected)