From 0a6ed63a04419cb588e1cdee34177d3f0f1c0f20 Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Sat, 6 Oct 2018 10:41:20 +0200 Subject: [PATCH] Make a cosmetic adjustment --- tests/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib.rs b/tests/lib.rs index 6d3e4ba..507309f 100644 --- a/tests/lib.rs +++ b/tests/lib.rs @@ -55,7 +55,7 @@ fn connection_set_busy_handler() { thread::spawn(move || { let mut connection = ok!(sqlite::open(&path)); ok!(connection.set_busy_handler(|_| true)); - let statement = "INSERT INTO `users` (id, name, age, photo) VALUES (?, ?, ?, ?)"; + let statement = "INSERT INTO users (id, name, age, photo) VALUES (?, ?, ?, ?)"; let mut statement = ok!(connection.prepare(statement)); ok!(statement.bind(1, 2i64)); ok!(statement.bind(2, "Bob"));