Skip to content

Commit 7d8751a

Browse files
committed
Update test to use quoted column name
Signed-off-by: Stephen Celis <[email protected]>
1 parent b037b3a commit 7d8751a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SQLite Common Tests/StatementTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class StatementTests: XCTestCase {
173173

174174
func test_values_returnsDictionaryOfColumnsToValues() {
175175
InsertUser(db, "alice")
176-
let stmt = db.prepare("SELECT id, email FROM users")
176+
let stmt = db.prepare("SELECT id, \"email\" FROM users")
177177
stmt.next()
178178

179179
let values = stmt.values!

0 commit comments

Comments
 (0)