Skip to content

Commit

Permalink
Applied rust fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianSchmid committed May 8, 2023
1 parent 0f1ccd4 commit 932cc3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dlt_slice_iterator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ mod slice_interator_tests {

#[test]
fn slice() {
let buffer: [u8;4] = [1, 2, 3, 4];
let buffer: [u8; 4] = [1, 2, 3, 4];
let it = SliceIterator { slice: &buffer };
assert_eq!(it.slice(), &buffer);
}
Expand Down

0 comments on commit 932cc3d

Please sign in to comment.