Skip to content

Commit

Permalink
address clippy 1.85 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ekump committed Feb 20, 2025
1 parent 89c8f48 commit e163a90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remote-config/src/fetch/fetcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ pub mod tests {
assert_eq!(state.encoded_capabilities.len(), 4);
assert_eq!(
state.encoded_capabilities,
(2u32 | 1 << 24 | 1 << 31).to_be_bytes()
(2u32 | (1 << 24) | (1 << 31)).to_be_bytes()
);
}
}

0 comments on commit e163a90

Please sign in to comment.