test: Fixup 6b5c390d4 typo

This commit is contained in:
David Nadlinger 2022-04-22 00:28:36 +01:00 committed by Sebastien Bourdeauducq
parent 8786b137a3
commit 73371931fc
1 changed files with 2 additions and 2 deletions

View File

@ -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):