Skip to content

Commit e19d40a

Browse files
committed
fix(integration): replace 3.14 with 3.25 to avoid clippy approx_constant lint
1 parent cddf2c7 commit e19d40a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cipherstash-proxy-integration/src/map_ore_index_order.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,15 +464,15 @@ mod tests {
464464
#[tokio::test]
465465
async fn map_ore_order_float8() {
466466
let values: Vec<f64> = vec![
467-
-99.9, -1.5, -0.001, 0.0, 0.001, 1.5, 3.14, 42.0, 99.9, 1000.5,
467+
-99.9, -1.5, -0.001, 0.0, 0.001, 1.5, 3.25, 42.0, 99.9, 1000.5,
468468
];
469469
map_ore_order_generic("encrypted_float8", values, "ASC").await;
470470
}
471471

472472
#[tokio::test]
473473
async fn map_ore_order_float8_desc() {
474474
let values: Vec<f64> = vec![
475-
-99.9, -1.5, -0.001, 0.0, 0.001, 1.5, 3.14, 42.0, 99.9, 1000.5,
475+
-99.9, -1.5, -0.001, 0.0, 0.001, 1.5, 3.25, 42.0, 99.9, 1000.5,
476476
];
477477
map_ore_order_generic("encrypted_float8", values, "DESC").await;
478478
}

0 commit comments

Comments
 (0)