From f51b50f07f5d11c34115f87a47e6ab309d00b07a Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Wed, 10 Jan 2024 22:26:18 +0000 Subject: [PATCH] Fix tests --- tests/sqlite/query.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/sqlite/query.rs b/tests/sqlite/query.rs index 132ff98e1..9aec37f66 100644 --- a/tests/sqlite/query.rs +++ b/tests/sqlite/query.rs @@ -1407,7 +1407,7 @@ fn insert_on_conflict_7() { .update_column(Glyph::Aspect) .to_owned() ) - .to_string(PostgresQueryBuilder), + .to_string(SqliteQueryBuilder), [ r#"INSERT INTO "glyph" ("aspect", "image")"#, r#"VALUES ('04108048005887010020060000204E0180400400', 3.1415)"#, @@ -1434,7 +1434,7 @@ fn insert_on_conflict_8() { .update_column(Glyph::Aspect) .to_owned() ) - .to_string(PostgresQueryBuilder), + .to_string(SqliteQueryBuilder), [ r#"INSERT INTO "glyph" ("aspect", "image")"#, r#"VALUES ('04108048005887010020060000204E0180400400', 3.1415)"#, @@ -1461,7 +1461,7 @@ fn insert_on_conflict_9() { .update_column(Glyph::Aspect) .to_owned() ) - .to_string(PostgresQueryBuilder), + .to_string(SqliteQueryBuilder), [ r#"INSERT INTO "glyph" ("aspect", "image")"#, r#"VALUES ('04108048005887010020060000204E0180400400', 3.1415)"#,