From 73371931fc7f5a5bf8dec8127168dbc79a3e60ca 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 4c68c3f82..5e783a816 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 = np.array([10, 20]) - b = np.sqrt(4.0) + a = numpy.array([10, 20]) + b = numpy.sqrt(4.0) class NumpyQuotingTest(ExperimentCase):