Skip to content

Commit 4f71c05

Browse files
hyperpolymathclaude
andcommitted
fix(ci): update hypatia binary detection in hypatia-scan workflow
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 663f346 commit 4f71c05

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

compiler/error-wasm/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ mod tests {
587587
Err(WasmError::HeapOverflow { requested, .. }) => {
588588
assert_eq!(requested, 10000);
589589
}
590-
_ => panic!("expected HeapOverflow"),
590+
other => panic!("expected HeapOverflow, got {other:?}"),
591591
}
592592
}
593593

@@ -640,7 +640,7 @@ mod tests {
640640
Err(WasmError::InvalidAst { message }) => {
641641
assert!(!message.is_empty());
642642
}
643-
_ => panic!("expected InvalidAst"),
643+
other => panic!("expected InvalidAst, got {other:?}"),
644644
}
645645
}
646646

0 commit comments

Comments
 (0)