Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sminez committed Oct 23, 2024
1 parent 2edf133 commit df9a77a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/pure/stack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,6 @@ mod tests {
assert_eq!(s, expected);
}


#[test_case(stack!([1, 2], 3, [4, 5, 6]), |&e| e == 3, stack!([1, 2], 3, [4, 5, 6]); "current focus")]
#[test_case(stack!([1, 2], 3, [4, 5, 6]), |&e| e > 4, stack!([1, 2, 3, 4], 5, [6]); "in tail")]
#[test_case(stack!([1, 2], 3, [4, 5, 6]), |&e| e < 3 && e > 1, stack!([1], 2, [3, 4, 5, 6]); "in head")]
Expand Down

0 comments on commit df9a77a

Please sign in to comment.