test: Fixup 6b5c390d4 typo

This commit is contained in:
David Nadlinger 2022-04-22 00:28:36 +01:00
parent 6b5c390d48
commit b2b84b1fd6
1 changed files with 2 additions and 2 deletions

View File

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