From 314ef0424a205b206e03f09f1f16c7b6d545462f Mon Sep 17 00:00:00 2001 From: poulami-sau <109125687+poulami-sau@users.noreply.github.com> Date: Sun, 21 Apr 2024 21:58:12 -0400 Subject: [PATCH] removed print statement in test case --- testing/python/approx.py | 1 - 1 file changed, 1 deletion(-) diff --git a/testing/python/approx.py b/testing/python/approx.py index 91cb666c5..968e88285 100644 --- a/testing/python/approx.py +++ b/testing/python/approx.py @@ -773,7 +773,6 @@ class TestApprox: self.vals = vals def __array__(self, dtype=None, copy=None): - print("called __array__ in ImplicitArray") return np.array(self.vals) vec1 = ImplicitArray([1.0, 2.0, 3.0])