From 560e558c9ba538ca65921f20263d75fb64e8c361 Mon Sep 17 00:00:00 2001 From: Manjusaka Date: Sun, 15 Dec 2024 21:45:20 +0800 Subject: [PATCH] fix test Signed-off-by: Manjusaka --- integrations/cloud_filter/tests/behavior/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/cloud_filter/tests/behavior/utils.rs b/integrations/cloud_filter/tests/behavior/utils.rs index 105cc4064d87..e7afe4a1f492 100644 --- a/integrations/cloud_filter/tests/behavior/utils.rs +++ b/integrations/cloud_filter/tests/behavior/utils.rs @@ -35,7 +35,7 @@ pub fn file_content(path: impl Display) -> anyhow::Result { let content = powershell_script::run(&format!("Get-Content \"{path}\"")) .context("run powershell")? .stdout() - .unwrap_or_default(); + .unwrap_or_default() Ok(content) }