From dc501fb0aef807ce1645641a05582d326a5ac9d6 Mon Sep 17 00:00:00 2001 From: Umut Date: Mon, 30 May 2022 17:23:18 +0200 Subject: [PATCH] chore: convert an 8-bit test a 7-bit test to improve test time --- tests/execution/test_others.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/execution/test_others.py b/tests/execution/test_others.py index 6e3e8d160..bc3dfea99 100644 --- a/tests/execution/test_others.py +++ b/tests/execution/test_others.py @@ -448,11 +448,11 @@ def deterministic_unary_function(x): id="x + shape[0] + x.ndim + x.size", ), pytest.param( - lambda x: (100 * np.sin(x.transpose())).astype(np.int64), + lambda x: (50 * np.sin(x.transpose())).astype(np.int64), { "x": {"status": "encrypted", "range": [0, 15], "shape": (3, 2)}, }, - id="(100 * np.sin(x.transpose())).astype(np.int64)", + id="(50 * np.sin(x.transpose())).astype(np.int64)", ), pytest.param( lambda x: np.where(x < 5, x * 3, x),