From d524b10e33ed3b64412f10a6724c671ee4e895d4 Mon Sep 17 00:00:00 2001 From: Bharat Medasani Date: Thu, 9 Jan 2025 09:03:43 -0500 Subject: [PATCH] Update test_optimizable.py --- tests/core/test_optimizable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/test_optimizable.py b/tests/core/test_optimizable.py index 222c94ec1..079b245b5 100755 --- a/tests/core/test_optimizable.py +++ b/tests/core/test_optimizable.py @@ -97,7 +97,7 @@ def sum(self): return np.sum(self.local_full_x) def product(self): - return np.product(self.local_full_x) + return np.prod(self.local_full_x) return_fn_map = {'sum': sum, 'prod': product}