Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Jan 10, 2024
1 parent 2bbaca4 commit f51b50f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/sqlite/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)"#,
Expand All @@ -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)"#,
Expand All @@ -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)"#,
Expand Down

0 comments on commit f51b50f

Please sign in to comment.