From 2291a51f9face2f19913082f46487dc506e9b6cd Mon Sep 17 00:00:00 2001 From: Jack Wright Date: Tue, 30 Jul 2024 21:46:19 -0700 Subject: [PATCH] fixing a broken test --- crates/nu-plugin-core/src/interface/tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/nu-plugin-core/src/interface/tests.rs b/crates/nu-plugin-core/src/interface/tests.rs index 27449c7431..ca80207b8a 100644 --- a/crates/nu-plugin-core/src/interface/tests.rs +++ b/crates/nu-plugin-core/src/interface/tests.rs @@ -140,8 +140,8 @@ fn read_pipeline_data_value() -> Result<(), ShellError> { let manager = TestInterfaceManager::new(&TestCase::new()); let value = Value::test_int(4); let metadata = Some(PipelineMetadata { - data_source: DataSource::None, - content_type: Some("foo".into()), + data_source: DataSource::FilePath("/test/path".into()), + content_type: None }); let header = PipelineDataHeader::Value { value: value.clone(),