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
…4462)

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 authored Nov 17, 2023
1 parent b567896 commit aaed047
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 aaed047

Please sign in to comment.