Skip to content

Commit 6c77a2d

Browse files
authored
Merge pull request #3 from jjamminjim/Statement_prepareRowIterator
Fix linting issues
2 parents dff83f7 + 4459338 commit 6c77a2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/SQLite/Core/Statement.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ extension Statement {
232232
public func prepareRowIterator() -> RowIterator {
233233
return RowIterator(statement: self, columnNames: self.columnNameMap)
234234
}
235-
235+
236236
var columnNameMap: [String: Int] {
237237
var result = [String: Int]()
238238
for (index, name) in self.columnNames.enumerated() {

Tests/SQLiteTests/StatementTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class StatementTests: SQLiteTestCase {
2323
let blobValue = try! db.scalar(blobs.select(blobColumn).limit(1, offset: 0))
2424
XCTAssertEqual([], blobValue.bytes)
2525
}
26-
26+
2727
func test_prepareRowIterator() {
2828
let names = ["a", "b", "c"]
2929
try! insertUsers(names)

0 commit comments

Comments
 (0)