Skip to content

Commit

Permalink
trying to debug test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Coder-Harshit committed Sep 9, 2024
1 parent eee69bb commit 7708e4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mod tests {
let result = Command::new("target/release/ospect") // Specify the binary path
.output()
.expect("Failed to execute command (BASIC)");
assert!(result.status.success());
assert!(result.status.success(), "Command failed with exit code: {}", result.status.code().unwrap_or(-1));
}

// #[test]
Expand Down

0 comments on commit 7708e4e

Please sign in to comment.