We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bce6a82 commit a8f6d33Copy full SHA for a8f6d33
tests/index.rs
@@ -529,7 +529,10 @@ async fn privileged_paths_are_not_accessible() {
529
/// https://github.com/sqlpage/SQLPage/issues/738
530
async fn test_json_columns() {
531
let app_data = make_app_data().await;
532
- if !matches!(app_data.db.to_string().to_lowercase().as_str(), "postgres" | "sqlite") {
+ if !matches!(
533
+ app_data.db.to_string().to_lowercase().as_str(),
534
+ "postgres" | "sqlite"
535
+ ) {
536
log::info!("Skipping test_json_columns on database {}", app_data.db);
537
return;
538
}
0 commit comments