We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 606a072 commit e220ec5Copy full SHA for e220ec5
src/etos_api/lib/validator.py
@@ -178,4 +178,5 @@ def validate(self):
178
:raises ValidationError: If the suite did not validate.
179
"""
180
downloaded_suite = self._download_suite()
181
- assert Suite(**downloaded_suite)
+ for suite in downloaded_suite:
182
+ assert Suite(**suite)
0 commit comments