refactor: Remove unneded imports

This commit is contained in:
Alivecow 2024-12-23 10:29:12 +01:00
parent c9c26b3971
commit 848ad15bb8
7 changed files with 5 additions and 8 deletions

View file

@ -788,7 +788,7 @@ mod tests {
#[test]
fn coeff_to_binary() {
let coefficients: Vec<u8> = vec![12, 127, 9, 0];
let b64: &str = "ARIAAAAAAAAAAAAAAAAAgA==";
let _b64: &str = "ARIAAAAAAAAAAAAAAAAAgA==";
let calculated_num: u128 = coefficient_to_binary(coefficients);
assert_eq!(
BASE64_STANDARD.encode(calculated_num.to_ne_bytes()),