From b9806c337c427ccfadbe66879700172505d13174 Mon Sep 17 00:00:00 2001 From: Michael Campbell <mtcampbe@illinois.edu> Date: Mon, 13 Jul 2020 20:20:51 -0500 Subject: [PATCH] Use generic np workalike test instead of custom one --- test/test_meshmode.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_meshmode.py b/test/test_meshmode.py index e6312f55..17773c20 100644 --- a/test/test_meshmode.py +++ b/test/test_meshmode.py @@ -1467,6 +1467,7 @@ def test_array_context_np_workalike(ctx_factory): ("arctan2", 2), ("minimum", 2), ("maximum", 2), + ("where", 3), ]: args = [np.random.randn(discr.ndofs) for i in range(n_args)] ref_result = getattr(np, sym_name)(*args) -- GitLab