Skip to content

Commit f6b3f4c

Browse files
committed
Fix bug in test
1 parent 79063bb commit f6b3f4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pySDC/tests/test_problems/test_RayleighBenard.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def test_eval_f(nx, nz, direction, spectral_space):
1515
X, Z = P.X, P.Z
1616
cos, sin = np.cos, np.sin
1717

18-
kappa = (P.Rayleigh * P.Prandl) ** (-1 / 2)
19-
nu = (P.Rayleigh / P.Prandl) ** (-1 / 2)
18+
kappa = (P.Rayleigh * P.Prandtl) ** (-1 / 2)
19+
nu = (P.Rayleigh / P.Prandtl) ** (-1 / 2)
2020

2121
if direction == 'x':
2222
y = sin(X * np.pi)

0 commit comments

Comments
 (0)