Skip to content

Commit 1aa0f1c

Browse files
committed
chore: fix clippy
1 parent 933b3a2 commit 1aa0f1c

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

  • libs/@local/graph/postgres-store/src/store/postgres/query/expression

libs/@local/graph/postgres-store/src/store/postgres/query/expression/conditional.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -812,10 +812,8 @@ mod tests {
812812
#[test]
813813
fn transpile_u128_constant() {
814814
assert_eq!(
815-
Expression::Constant(Constant::U128(
816-
340_282_366_920_938_463_463_374_607_431_768_211_455
817-
))
818-
.transpile_to_string(),
815+
Expression::Constant(Constant::U128(0xFFFF_FFFF_FFFF_FFFF_FFFF_FFFF_FFFF_FFFF))
816+
.transpile_to_string(),
819817
"340282366920938463463374607431768211455"
820818
);
821819
}

0 commit comments

Comments
 (0)