Skip to content

Commit

Permalink
fix: remove filter that skipped extension_types.yaml deserialize te…
Browse files Browse the repository at this point in the history
…st (#78)

substrait-io/substrait#404 was merged so re-enabling deserialization test of `extension_types.yaml`.
  • Loading branch information
mbrobbel committed Apr 4, 2023
1 parent 4d94c48 commit f209a26
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,6 @@ mod tests {
.is_some()
})
.map(DirEntry::into_path)
// TODO(mbrobbel):
// https://github.com/substrait-io/substrait/pull/404
.filter(|path| {
path != &PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("substrait/extensions")
.join("extension_types.yaml")
})
.for_each(|path| {
let file = fs::read_to_string(&path).unwrap();
let simple_extension = serde_yaml::from_str::<SimpleExtensions>(&file);
Expand Down

0 comments on commit f209a26

Please sign in to comment.