Fix typo in nalu-wind package (#18596)

This commit is contained in:
psakievich 2020-09-09 18:12:14 -06:00 committed by GitHub
parent 9eac1ed6a8
commit 7b2c59e6cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,7 +129,7 @@ def cmake_args(self):
test_tol = float(self.spec.variants['test_tol'].value)
if test_tol <= 0.0:
raise ValueError
options.append('-DTEST_TOLERACE:STRING={tol}'.format(
options.append('-DTEST_TOLERANCE:STRING={tol}'.format(
tol=test_tol))
except ValueError:
print("Specified test_tol must be a positive float. "