Revert "test: Fixup 6b5c390d4 typo"

This reverts commit 73371931fc.
This commit is contained in:
Sebastien Bourdeauducq 2022-04-23 19:06:28 +08:00
parent 73371931fc
commit 3bc5a0dfb7

View File

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