From 3bc5a0dfb7e3c8cb7b0b32b242cc99b127dcc4dc Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 23 Apr 2022 19:06:28 +0800 Subject: [PATCH] Revert "test: Fixup 6b5c390d4 typo" This reverts commit 73371931fc7f5a5bf8dec8127168dbc79a3e60ca. --- artiq/test/coredevice/test_embedding.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/test/coredevice/test_embedding.py b/artiq/test/coredevice/test_embedding.py index 5e783a816..4c68c3f82 100644 --- a/artiq/test/coredevice/test_embedding.py +++ b/artiq/test/coredevice/test_embedding.py @@ -561,8 +561,8 @@ class _NumpyQuoting(EnvExperiment): @kernel def run(self): - a = numpy.array([10, 20]) - b = numpy.sqrt(4.0) + a = np.array([10, 20]) + b = np.sqrt(4.0) class NumpyQuotingTest(ExperimentCase):