From 3989384cecfad34deebbd9100b110afe041ae7ef Mon Sep 17 00:00:00 2001 From: poulami-sau <109125687+poulami-sau@users.noreply.github.com> Date: Sun, 21 Apr 2024 20:47:17 -0400 Subject: [PATCH] added test case in testing/python/approx.py based on test case provided by reporter in issue #12114 --- testing/python/approx.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/python/approx.py b/testing/python/approx.py index 6a58cabff..91cb666c5 100644 --- a/testing/python/approx.py +++ b/testing/python/approx.py @@ -778,6 +778,7 @@ class TestApprox: vec1 = ImplicitArray([1.0, 2.0, 3.0]) vec2 = ImplicitArray([1.0, 2.0, 4.0]) + # see issue #12114 for test case assert vec1 != approx(vec2) def test_numpy_array_protocol(self):