From 0adcd150ece4359fa8263f62f74208098933e629 Mon Sep 17 00:00:00 2001 From: Tarun Samanta <55488549+tarunsamanta2k20@users.noreply.github.com> Date: Thu, 23 Mar 2023 18:54:47 +0530 Subject: [PATCH] Update test_inputs.rs --- vstc/src/test_inputs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vstc/src/test_inputs.rs b/vstc/src/test_inputs.rs index 1143994..4e04917 100644 --- a/vstc/src/test_inputs.rs +++ b/vstc/src/test_inputs.rs @@ -32,11 +32,11 @@ mod tests { let file_contents = fs::read_to_string(&file_path).expect("Failed to read file contents"); if let Some(first_line) = file_contents.lines().next() { - if first_line.starts_with("! test_output ") { + if first_line.starts_with("//! test_output ") { println!("\nTesting {} ...", file_path.to_str().unwrap()); let output_str = first_line - .split_once("! test_output ") + .split_once("//! test_output ") .map(|x| x.1) .unwrap_or("");