From 9ff6bc28f46a9da1acf21fbde90001bb7a7a871c Mon Sep 17 00:00:00 2001 From: Mihai Cara Date: Wed, 18 Dec 2024 18:28:05 -0500 Subject: [PATCH] minor cleanup/typo --- tests/test_ramp_fitting_gls_fit.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/test_ramp_fitting_gls_fit.py b/tests/test_ramp_fitting_gls_fit.py index 2867d670..cde4f04c 100644 --- a/tests/test_ramp_fitting_gls_fit.py +++ b/tests/test_ramp_fitting_gls_fit.py @@ -678,12 +678,11 @@ def test_two_groups_unc(): answer = slopes[2][50, 50] check = np.sqrt((deltaDN / gain) / group_time**2 + (rnoise**2 / group_time**2)) tol = 1.0e-6 - # print(f"answer = {answer}") - # print(f"check = {check}") + np.testing.assert_allclose(answer, check, tol) -@pytest.mark.skip(reason="GLS does not comopute VAR_XXX arrays.") +@pytest.mark.skip(reason="GLS does not compute VAR_XXX arrays.") def test_five_groups_unc(): """ """ """