Skip to content

Commit

Permalink
Restore to how it was before
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Defise committed Oct 25, 2023
1 parent 7ae6cef commit 5f42f7f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def test(self):
}
skipped_resources = {}

passed_check_resources = set([c.resource for c in report.passed_checks])
failed_check_resources = set([c.resource for c in report.failed_checks])
passed_check_resources = {c.resource for c in report.passed_checks}
failed_check_resources = {c.resource for c in report.failed_checks}

self.assertEqual(summary['passed'], len(passing_resources))
self.assertEqual(summary['failed'], len(failing_resources))
Expand Down

0 comments on commit 5f42f7f

Please sign in to comment.