Revert "test: Fixup 6b5c390d4 typo"

This reverts commit 73371931fc.
release-6
Sebastien Bourdeauducq 2022-04-23 19:06:28 +08:00
parent 73371931fc
commit 3bc5a0dfb7
1 changed files with 2 additions and 2 deletions

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