Skip to content

Commit

Permalink
fix test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 committed Jan 24, 2024
1 parent 73a9231 commit c9f5747
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/live/sqlite/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ async fn test_002() -> DiscoveryResult<()> {
[
r#"CREATE TABLE "order" ("#,
r#""id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,"#,
r#""total" decimal,"#,
r#""total" decimal_text,"#,
r#""bakery_id" integer NOT NULL,"#,
r#""customer_id" integer NOT NULL,"#,
r#""placed_at" datetime_text NOT NULL DEFAULT CURRENT_TIMESTAMP,"#,
Expand All @@ -298,7 +298,7 @@ async fn test_002() -> DiscoveryResult<()> {
[
r#"CREATE TABLE "lineitem" ("#,
r#""id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,"#,
r#""price" decimal,"#,
r#""price" decimal_text,"#,
r#""quantity" integer,"#,
r#""order_id" integer NOT NULL,"#,
r#""cake_id" integer NOT NULL,"#,
Expand Down

0 comments on commit c9f5747

Please sign in to comment.