Fix typo in nalu-wind package (#18596)
This commit is contained in:
parent
9eac1ed6a8
commit
7b2c59e6cf
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ def cmake_args(self):
|
||||||
test_tol = float(self.spec.variants['test_tol'].value)
|
test_tol = float(self.spec.variants['test_tol'].value)
|
||||||
if test_tol <= 0.0:
|
if test_tol <= 0.0:
|
||||||
raise ValueError
|
raise ValueError
|
||||||
options.append('-DTEST_TOLERACE:STRING={tol}'.format(
|
options.append('-DTEST_TOLERANCE:STRING={tol}'.format(
|
||||||
tol=test_tol))
|
tol=test_tol))
|
||||||
except ValueError:
|
except ValueError:
|
||||||
print("Specified test_tol must be a positive float. "
|
print("Specified test_tol must be a positive float. "
|
||||||
|
|
Loading…
Reference in a new issue