Skip to content

Commit

Permalink
fix system health CI test type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael McAleer committed Dec 14, 2020
1 parent 3fd8b27 commit 2300d33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyU4V/tests/ci_tests/test_pyu4v_ci_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def _test_get_health_check_details(self):
health_check = self.system.get_health_check_details(
health_check_id=health_check_id)
self.assertIsInstance(health_check_list, dict)
run_checks = health_check.get(TEST_RES)
run_checks = health_check.get(TEST_RES, list())
try:
self.assertEqual(len(run_checks), 9)
except AssertionError:
Expand Down

0 comments on commit 2300d33

Please sign in to comment.