From f209a26de26cd92b2cbd0699071546dccab48561 Mon Sep 17 00:00:00 2001 From: Matthijs Brobbel Date: Tue, 4 Apr 2023 15:14:14 +0000 Subject: [PATCH] fix: remove filter that skipped `extension_types.yaml` deserialize test (#78) https://github.com/substrait-io/substrait/pull/404 was merged so re-enabling deserialization test of `extension_types.yaml`. --- src/text.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/text.rs b/src/text.rs index c242300..f586d91 100644 --- a/src/text.rs +++ b/src/text.rs @@ -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::(&file);