Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
JustusAdam committed Nov 11, 2023
1 parent f6d939c commit 187c56f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/expected/function-contract/assigns_expr_pass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ fn modify(ptr: &mut Box<u32>) {
fn main() {
let mut i = Box::new(kani::any());
modify(&mut i);
}
}
2 changes: 1 addition & 1 deletion tests/expected/function-contract/assigns_fail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ fn main() {
let _ = Box::new(());
let mut i = kani::any();
modify(&mut i);
}
}
2 changes: 1 addition & 1 deletion tests/expected/function-contract/assigns_pass.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ fn main() {
let _ = Box::new(());
let mut i = kani::any();
modify(&mut i);
}
}

0 comments on commit 187c56f

Please sign in to comment.