Skip to content

Commit

Permalink
test test fail
Browse files Browse the repository at this point in the history
  • Loading branch information
ParaZera committed Jun 8, 2024
1 parent 52a412c commit 325a97b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fn add(a: i32, b: i32) -> i32 {
return a + b;
a + b
}

fn main() {
Expand All @@ -12,6 +12,6 @@ mod tests {

#[test]
fn test_add() {
assert_eq!(add(2, 3), 5);
assert_eq!(add(2, 3), 6);
}
}

0 comments on commit 325a97b

Please sign in to comment.