We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8453bfa commit 1ccdaf3Copy full SHA for 1ccdaf3
1 file changed
tests/odbc/odbc.rs
@@ -794,7 +794,7 @@ async fn it_handles_prepare_statement_errors() -> anyhow::Result<()> {
794
},
795
Err(sqlx_oldapi::Error::Database(err)) => {
796
assert!(
797
- err.to_string().contains("idonotexist"),
+ err.to_string().to_lowercase().contains("idonotexist"),
798
"{:?} should contain 'idonotexist'",
799
err
800
);
0 commit comments