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 097af93 commit 2ecaefaCopy full SHA for 2ecaefa
tests/test_validate.py
@@ -28,7 +28,11 @@ def test_validate_json(self):
28
Validate of the incoming file (basic.tsv) abides
29
by the rules set by `sssom-schema`.
30
"""
31
- self.assertIsNone(validate(self.correct_msdf1, self.validation_types))
+ rv = validate(self.correct_msdf1, self.validation_types)
32
+ self.assertIsNotNone(rv)
33
+ self.assertIn(SchemaValidationType.JsonSchema, rv)
34
+ json_validation = rv[SchemaValidationType.JsonSchema]
35
+ self.assertEqual([], json_validation.results)
36
37
@unittest.skip(
38
reason="""\
0 commit comments