Skip to content

Commit 3145fc0

Browse files
committed
address clippy 1.85 errors
1 parent 88f79e4 commit 3145fc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

remote-config/src/fetch/fetcher.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ pub mod tests {
855855
assert_eq!(state.encoded_capabilities.len(), 4);
856856
assert_eq!(
857857
state.encoded_capabilities,
858-
(2u32 | 1 << 24 | 1 << 31).to_be_bytes()
858+
(2u32 | (1 << 24) | (1 << 31)).to_be_bytes()
859859
);
860860
}
861861
}

0 commit comments

Comments
 (0)