From b2b84b1fd6a12d0927974ea64f7f104724c2ab16 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Fri, 22 Apr 2022 00:28:36 +0100 Subject: [PATCH] test: Fixup 6b5c390d4 typo --- 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 3f2ca96c9..3a6498933 100644 --- a/artiq/test/coredevice/test_embedding.py +++ b/artiq/test/coredevice/test_embedding.py @@ -546,8 +546,8 @@ class _NumpyQuoting(EnvExperiment): @kernel def run(self): - a = np.array([10, 20]) - b = np.sqrt(4.0) + a = numpy.array([10, 20]) + b = numpy.sqrt(4.0) class NumpyQuotingTest(ExperimentCase):