summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorpsakievich <psakiev@sandia.gov>2020-09-09 18:12:14 -0600
committerGitHub <noreply@github.com>2020-09-09 19:12:14 -0500
commit7b2c59e6cf5173ca7e22c7c568f5a898031c40ec (patch)
tree2f8e995f0d3e0db9f0b4d816fd22781d1bcc5fe6 /var
parent9eac1ed6a8c22eff57951627726a8a573e8ec50d (diff)
downloadspack-7b2c59e6cf5173ca7e22c7c568f5a898031c40ec.tar.gz
spack-7b2c59e6cf5173ca7e22c7c568f5a898031c40ec.tar.bz2
spack-7b2c59e6cf5173ca7e22c7c568f5a898031c40ec.tar.xz
spack-7b2c59e6cf5173ca7e22c7c568f5a898031c40ec.zip
Fix typo in nalu-wind package (#18596)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/nalu-wind/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/nalu-wind/package.py b/var/spack/repos/builtin/packages/nalu-wind/package.py
index 1e28dd8639..1f54887dc7 100644
--- a/var/spack/repos/builtin/packages/nalu-wind/package.py
+++ b/var/spack/repos/builtin/packages/nalu-wind/package.py
@@ -129,7 +129,7 @@ class NaluWind(CMakePackage):
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. "