From e01b0ed421459d8e057804adc9929e6dbb497f78 Mon Sep 17 00:00:00 2001 From: Theo Steininger Date: Tue, 15 Aug 2017 03:18:53 +0200 Subject: [PATCH] Increased size of Field in fft test. --- test/test_operators/test_fft_operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_operators/test_fft_operator.py b/test/test_operators/test_fft_operator.py index e12e1d04..a629baed 100644 --- a/test/test_operators/test_fft_operator.py +++ b/test/test_operators/test_fft_operator.py @@ -107,7 +107,7 @@ class FFTOperatorTests(unittest.TestCase): if module == "fftw" and "fftw" not in gdi: raise SkipTest tol = _get_rtol(dtype) - a = [a1, a2, a3] = [RGSpace((8,)), RGSpace((4, 4)), RGSpace((5, 6))] + a = [a1, a2, a3] = [RGSpace((32,)), RGSpace((4, 4)), RGSpace((5, 6))] fft = FFTOperator(domain=a[index], module=module, default_spaces=(index,)) fft._forward_transformation.harmonic_base = base -- GitLab