Skip to content

Commit f810156

Browse files
committed
fmt: apply rustfmt
Signed-off-by: Pietro <6842434+RomanSurface@users.noreply.github.com>
1 parent 5ff7bc7 commit f810156

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/integration_tests.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ use std::thread;
1717

1818
use libc::SYS_read;
1919

20-
2120
// The type of the `req` parameter is different for the `musl` library. This will enable
2221
// successful build for other non-musl libraries.
2322
#[cfg(target_env = "musl")]
@@ -795,10 +794,7 @@ fn test_filter_apply() {
795794

796795
#[test]
797796
fn test_duplicate_syscall_keys_override_previous_rules() {
798-
let rules = vec![
799-
(SYS_read, 1),
800-
(SYS_read, 2),
801-
];
797+
let rules = vec![(SYS_read, 1), (SYS_read, 2)];
802798

803799
let map: BTreeMap<_, _> = rules.into_iter().collect();
804800

0 commit comments

Comments
 (0)