diff --git a/tests/regression/_regtest_outputs/test_spectra.test_eva[custom-16]__0/arrays.npy b/tests/regression/_regtest_outputs/test_spectra.test_eva[custom-16]__0/arrays.npy index 890af6470..df13bfd1f 100644 Binary files a/tests/regression/_regtest_outputs/test_spectra.test_eva[custom-16]__0/arrays.npy and b/tests/regression/_regtest_outputs/test_spectra.test_eva[custom-16]__0/arrays.npy differ diff --git a/tests/regression/_regtest_outputs/test_spectra.test_eva[custom-32]__0/arrays.npy b/tests/regression/_regtest_outputs/test_spectra.test_eva[custom-32]__0/arrays.npy index 788000d92..02702fa70 100644 Binary files a/tests/regression/_regtest_outputs/test_spectra.test_eva[custom-32]__0/arrays.npy and b/tests/regression/_regtest_outputs/test_spectra.test_eva[custom-32]__0/arrays.npy differ diff --git a/tests/regression/_regtest_outputs/test_spectra.test_eva[default-16]__0/arrays.npy b/tests/regression/_regtest_outputs/test_spectra.test_eva[default-16]__0/arrays.npy index 003bd97ec..957feb3dc 100644 Binary files a/tests/regression/_regtest_outputs/test_spectra.test_eva[default-16]__0/arrays.npy and b/tests/regression/_regtest_outputs/test_spectra.test_eva[default-16]__0/arrays.npy differ diff --git a/tests/regression/_regtest_outputs/test_spectra.test_eva[default-32]__0/arrays.npy b/tests/regression/_regtest_outputs/test_spectra.test_eva[default-32]__0/arrays.npy index a28d2fdb0..51a20f7a0 100644 Binary files a/tests/regression/_regtest_outputs/test_spectra.test_eva[default-32]__0/arrays.npy and b/tests/regression/_regtest_outputs/test_spectra.test_eva[default-32]__0/arrays.npy differ diff --git a/tests/regression/_regtest_outputs/test_spectra.test_eve[custom-16]__0/arrays.npy b/tests/regression/_regtest_outputs/test_spectra.test_eve[custom-16]__0/arrays.npy index f2a3bbefd..5cebe7980 100644 Binary files a/tests/regression/_regtest_outputs/test_spectra.test_eve[custom-16]__0/arrays.npy and b/tests/regression/_regtest_outputs/test_spectra.test_eve[custom-16]__0/arrays.npy differ diff --git a/tests/regression/_regtest_outputs/test_spectra.test_eve[custom-32]__0/arrays.npy b/tests/regression/_regtest_outputs/test_spectra.test_eve[custom-32]__0/arrays.npy index ccd273f5e..a1c339b9c 100644 Binary files a/tests/regression/_regtest_outputs/test_spectra.test_eve[custom-32]__0/arrays.npy and b/tests/regression/_regtest_outputs/test_spectra.test_eve[custom-32]__0/arrays.npy differ diff --git a/tests/regression/_regtest_outputs/test_spectra.test_eve[default-16]__0/arrays.npy b/tests/regression/_regtest_outputs/test_spectra.test_eve[default-16]__0/arrays.npy index 418b6ba88..891cb074d 100644 Binary files a/tests/regression/_regtest_outputs/test_spectra.test_eve[default-16]__0/arrays.npy and b/tests/regression/_regtest_outputs/test_spectra.test_eve[default-16]__0/arrays.npy differ diff --git a/tests/regression/_regtest_outputs/test_spectra.test_eve[default-32]__0/arrays.npy b/tests/regression/_regtest_outputs/test_spectra.test_eve[default-32]__0/arrays.npy index 8ff16d65d..9561b626b 100644 Binary files a/tests/regression/_regtest_outputs/test_spectra.test_eve[default-32]__0/arrays.npy and b/tests/regression/_regtest_outputs/test_spectra.test_eve[default-32]__0/arrays.npy differ diff --git a/tests/regression/test_spectra.py b/tests/regression/test_spectra.py index 740833ff4..8b3413796 100644 --- a/tests/regression/test_spectra.py +++ b/tests/regression/test_spectra.py @@ -71,7 +71,7 @@ def test_eva(freq_data, snapshot, ind): ind : tuple frequency indices to test """ - snapshot.check(freq_data.eva[ind, :].astype(np.float32), rtol=5e-5, atol=1e-8) + snapshot.check(freq_data.eva[ind, :-5].astype(np.float32), rtol=5e-5, atol=1e-8) @pytest.mark.parametrize('ind', [16, 32]) @@ -92,4 +92,4 @@ def test_eve(freq_data, snapshot, ind): ind : tuple frequency indices to test """ - snapshot.check(np.abs(freq_data.eve[ind, :, :].astype(np.complex64)), rtol=5e-5, atol=1e-8) + snapshot.check(freq_data.eve[ind, :-5, :].astype(np.complex64), rtol=5e-5, atol=1e-8)