diff --git a/src/lib.rs b/src/lib.rs index 1df6e2b..24a0115 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1684,7 +1684,7 @@ mod test { let db = Connection::open_in_memory()?; assert_eq!("memory", db.one_column::("PRAGMA journal_mode")?); let mode = db.one_column::("PRAGMA journal_mode=off")?; - if cfg!(features = "bundled") { + if cfg!(feature = "bundled") { assert_eq!(mode, "off"); } else { // Note: system SQLite on macOS defaults to "off" rather than