Update CSQLiteTests.swift

This commit is contained in:
Stephen F. Booth 2021-06-08 12:33:02 -05:00 committed by GitHub
parent f7f7fe1d60
commit 2a3ab5ed62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ final class CSQLiteTests: XCTestCase {
XCTAssert(sqlite3_exec(db, "create table t1(a,b);", nil, nil, nil) == SQLITE_OK)
var stmt: OpaquePointer?
XCTAssert(sqlite3_prepare_v2(db, "insert into t1(a, b) values (?,?);", -1, &stmt, nil) == SQLITE_OK)
XCTAssert(sqlite3_prepare_v2(db, "insert into t1(a,b) values (?,?);", -1, &stmt, nil) == SQLITE_OK)
let rowCount = 42
for i in 0..<rowCount {