From 0a57d9daa79b93a6307fa7a2e8117fe1f34209ba Mon Sep 17 00:00:00 2001 From: Leo Alt Date: Sat, 13 May 2023 23:04:09 +0200 Subject: [PATCH] fix riscv print test --- riscv/tests/riscv.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/riscv/tests/riscv.rs b/riscv/tests/riscv.rs index 81d7796c3..30af2f828 100644 --- a/riscv/tests/riscv.rs +++ b/riscv/tests/riscv.rs @@ -69,8 +69,8 @@ fn test_keccak() { // TODO: instead of just checking for panic, we could check the stdout for the actual message. #[should_panic] fn test_print() { - let case = "print"; - verify_crate(case, vec![]); + let case = "print.rs"; + verify_file(case, vec![]); } fn verify_file(case: &str, inputs: Vec) {