diff --git a/tests/postgres/types.rs b/tests/postgres/types.rs index 87ca11ba47..64a41eddd5 100644 --- a/tests/postgres/types.rs +++ b/tests/postgres/types.rs @@ -494,13 +494,13 @@ test_type!(_cube>(Postgres, #[cfg(any(postgres_12, postgres_13, postgres_14, postgres_15))] test_type!(point(Postgres, - "point(2.2,-3.4)" == sqlx::postgres::types::PgPoint { x: 2.2, y:-3.4 }, + "point(2.2,-3.4)" @= sqlx::postgres::types::PgPoint { x: 2.2, y:-3.4 }, )); #[cfg(any(postgres_12, postgres_13, postgres_14, postgres_15))] test_type!(_point>(Postgres, - "array[point(2,3),point(2.1,3.4)]" == vec![sqlx::postgres::types::PgPoint { x:2., y: 3. }, sqlx::postgres::types::PgPoint { x:2.1, y: 3.4 }], - "array[point(2.2,-3.4)]" == vec![sqlx::postgres::types::PgPoint { x: 2.2, y: -3.4 }], + "array[point(2,3),point(2.1,3.4)]" @= vec![sqlx::postgres::types::PgPoint { x:2., y: 3. }, sqlx::postgres::types::PgPoint { x:2.1, y: 3.4 }], + "array[point(2.2,-3.4)]" @= vec![sqlx::postgres::types::PgPoint { x: 2.2, y: -3.4 }], )); #[cfg(feature = "rust_decimal")]