Skip to content

Commit

Permalink
test(qe): update expected error in SQLite tests with driver adapters
Browse files Browse the repository at this point in the history
The error message was changed in
#4429 but wasn't updated
in the tests which resulted in them failing on main.

#4429
  • Loading branch information
aqrln committed Nov 17, 2023
1 parent 800a9b4 commit 5c3494c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ mod conversion_error {
runner,
r#"query { findManyTestModel { field } }"#,
2023,
"Inconsistent column data: Conversion failed: number must be an integer in column 'field'"
"Inconsistent column data: Conversion failed: number must be an integer in column 'field', got '1.84467440724388e19'"
);

Ok(())
Expand Down Expand Up @@ -74,7 +74,7 @@ mod conversion_error {
runner,
r#"query { findManyTestModel { field } }"#,
2023,
"Inconsistent column data: Conversion failed: number must be an i64 in column 'field'"
"Inconsistent column data: Conversion failed: number must be an integer in column 'field', got '1.84467440724388e19'"
);

Ok(())
Expand Down

0 comments on commit 5c3494c

Please sign in to comment.