Skip to content

Commit 6900237

Browse files
committed
fix: correct test output
1 parent 06126ae commit 6900237

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/postgres/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ test_type!(_point<Vec<sqlx::postgres::types::PgPoint>>(Postgres,
506506
#[cfg(any(postgres_12, postgres_13, postgres_14, postgres_15))]
507507
test_type!(line<sqlx::postgres::types::PgLine>(Postgres,
508508
"line('{1.1, -2.2, 3.3}')" @= sqlx::postgres::types::PgLine { a: 1.1, b:-2.2, c: 3.3 },
509-
"line('((1.1, -2.2), (-2.2,3.3))')" @= sqlx::postgres::types::PgLine { a: 1.1, b:-2.2, c: 3.3 },
509+
"line('((1.1, -2.2), (-2.2,3.3))')" @= sqlx::postgres::types::PgLine { a: 5.5, b: 3.3, c: 1.21 },
510510
));
511511

512512
#[cfg(any(postgres_12, postgres_13, postgres_14, postgres_15))]

0 commit comments

Comments
 (0)