Skip to content

Commit 316faef

Browse files
committed
Fixed clippy issues
1 parent fb525f8 commit 316faef

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/by-util/test_nohup.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -257,11 +257,7 @@ fn test_nohup_file_permissions_ignore_umask_always_o600() {
257257
.permissions()
258258
.mode()
259259
& 0o777;
260-
assert_eq!(
261-
mode, 0o600,
262-
"with umask {:o}, got mode {:o}",
263-
umask_val, mode
264-
);
260+
assert_eq!(mode, 0o600, "with umask {umask_val:o}, got mode {mode:o}");
265261
}
266262
}
267263

0 commit comments

Comments
 (0)