From f78b64697a017973f10d29d1259d21ec9a41401c Mon Sep 17 00:00:00 2001 From: gwenn Date: Sat, 11 May 2024 09:48:53 +0200 Subject: [PATCH] Fix clippy warning --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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