From d65a74a667cb8c8fbfde4d9447264347a65b3cae Mon Sep 17 00:00:00 2001 From: WillLillis Date: Sun, 12 Jan 2025 00:21:58 -0500 Subject: [PATCH] fix(cli): correct test update option --- cli/src/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/test.rs b/cli/src/test.rs index 1e73c640..f278de99 100644 --- a/cli/src/test.rs +++ b/cli/src/test.rs @@ -724,7 +724,7 @@ pub fn parse_tests(path: &Path) -> io::Result { Ok(TestEntry::Group { name, children, - file_path: Some(path.to_path_buf()), + file_path: None, }) } else { let content = fs::read_to_string(path)?;