diff --git a/tests/test_lbh15_bounds.py b/tests/test_lbh15_bounds.py index 269a362..c67a03e 100644 --- a/tests/test_lbh15_bounds.py +++ b/tests/test_lbh15_bounds.py @@ -56,7 +56,7 @@ def test_max(self): val, key = get_val(prop, "max") self.assertAlmostEqual(val, prop.max, tol, key+" FAILED") - def test_T_at_min(self): + def test_T_at_max(self): for prop in self.properties: prop.compute_bounds() val, key = get_val(prop, "T_at_max") @@ -85,7 +85,7 @@ def test_max(self): val, key = get_val(prop, "max") self.assertAlmostEqual(val, prop.max, tol, key+" FAILED") - def test_T_at_min(self): + def test_T_at_max(self): for prop in self.properties: prop.compute_bounds() val, key = get_val(prop, "T_at_max") @@ -114,7 +114,7 @@ def test_max(self): val, key = get_val(prop, "max") self.assertAlmostEqual(val, prop.max, tol, key+" FAILED") - def test_T_at_min(self): + def test_T_at_max(self): for prop in self.properties: prop.compute_bounds() val, key = get_val(prop, "T_at_max")