Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Sep 26, 2023
1 parent 979c1b4 commit 119bf9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/fj-core/src/validate/shell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,8 @@ mod tests {
[[0., 0., 0.], [0., 1., 0.], [1., 0., 0.], [0., 0., 1.]],
&mut services,
);
let invalid = valid.shell.update_face(&valid.abc.face, |_| {
valid.abc.face.reverse(&mut services).insert(&mut services)
let invalid = valid.shell.update_face(&valid.abc.face, |face| {
face.reverse(&mut services).insert(&mut services)
});

valid.shell.validate_and_return_first_error()?;
Expand Down

0 comments on commit 119bf9d

Please sign in to comment.