Skip to content

Commit f7cf174

Browse files
committed
fix unit tests
1 parent dec4156 commit f7cf174

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/test_schema.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -566,6 +566,10 @@ def fn(a: FileData) -> list[FileData]:
566566
"items": {"key": {"type": "string"}, "value": {}},
567567
},
568568
"reprocess": {"type": "boolean", "default": False},
569+
"local_download_path": {
570+
"anyOf": [{"type": "string"}, {"type": "null"}],
571+
"default": None,
572+
},
569573
},
570574
"required": ["identifier", "connector_type", "metadata", "additional_metadata"],
571575
}
@@ -659,6 +663,10 @@ def fn(a: FileData) -> list[FileData]:
659663
"items": {"key": {"type": "string"}, "value": {}},
660664
},
661665
"reprocess": {"type": "boolean", "default": False},
666+
"local_download_path": {
667+
"anyOf": [{"type": "string"}, {"type": "null"}],
668+
"default": None,
669+
},
662670
},
663671
"required": ["identifier", "connector_type", "metadata", "additional_metadata"],
664672
},

0 commit comments

Comments
 (0)