From 82387feae53e327ab7e4f12be8cf141c175c6eaf Mon Sep 17 00:00:00 2001 From: David Ahijevych Date: Wed, 12 Feb 2025 15:13:36 -0700 Subject: [PATCH] adjusted expected cape in test_thermo.py --- tests/calc/test_thermo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/calc/test_thermo.py b/tests/calc/test_thermo.py index 8f3342e5c9..f1908389eb 100644 --- a/tests/calc/test_thermo.py +++ b/tests/calc/test_thermo.py @@ -1676,7 +1676,7 @@ def test_most_unstable_cape_cin(): dewpoint = np.array([19., 19., 14.3, 0., -10., 0.]) * units.celsius mucape, mucin = most_unstable_cape_cin(pressure, temperature, dewpoint) assert_almost_equal(mucape, 189.41067504060692 * units('joule / kilogram'), 4) - assert_almost_equal(mucin, -20.968278741 * units('joule / kilogram'), 4) + assert_almost_equal(mucin, -26.225902591840672 * units('joule / kilogram'), 4) def test_mixed_parcel():