Skip to content

Commit

Permalink
Added check_bool checking part in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
yunjoonjung-PNNL committed Nov 8, 2024
1 parent 67c09ba commit a91e8ea
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_vav_minimum_turndown_during_reheat.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def test_vav_turndown_untested(self):
]

self.assertEqual(results, expected_results)
self.assertEqual(verification_obj.check_bool(), "Untested")

def test_vav_turndown_V_dot_max_zero_untested(self):
points = [
Expand Down Expand Up @@ -72,6 +73,7 @@ def test_vav_turndown_V_dot_max_zero_untested(self):
]

self.assertEqual(results, expected_results)
self.assertEqual(verification_obj.check_bool(), "Untested")

def test_vav_turndown_pass(self):
points = [
Expand Down

0 comments on commit a91e8ea

Please sign in to comment.