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);