Add a failing test

This commit is contained in:
Manuel Thalmann 2025-03-02 22:59:36 +01:00
parent 94c1a84499
commit c322d42ffe

View file

@ -11,4 +11,9 @@ mod tests {
let result = add(2, 2); let result = add(2, 2);
assert_eq!(result, 4); assert_eq!(result, 4);
} }
#[test]
fn another() {
panic!("Make this test fail");
}
} }