Skip to content

Commit

Permalink
[master], issue #26, fixed test as in issue description
Browse files Browse the repository at this point in the history
  • Loading branch information
panDanieleN committed Jun 28, 2023
1 parent 81eabd7 commit cfebf93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_lbh15_bounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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")
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit cfebf93

Please sign in to comment.