Skip to content

Commit 17a2cb8

Browse files
committed
Lint
1 parent a6e6e68 commit 17a2cb8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Tests/SQLiteTests/Schema/SchemaDefinitionsTests.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ class ColumnDefinitionTests: XCTestCase {
2222
(ColumnDefinition(name: "text_column", primaryKey: nil, type: .TEXT, nullable: true, defaultValue: .stringLiteral("fo\"o"), references: nil),
2323
"\"text_column\" TEXT DEFAULT 'fo\"o'"),
2424

25-
(ColumnDefinition(name: "integer_column", primaryKey: nil, type: .INTEGER, nullable: true, defaultValue: .numericLiteral("123"), references: nil),
25+
(ColumnDefinition(name: "integer_column", primaryKey: nil, type: .INTEGER, nullable: true,
26+
defaultValue: .numericLiteral("123"), references: nil),
2627
"\"integer_column\" INTEGER DEFAULT 123"),
2728

28-
(ColumnDefinition(name: "real_column", primaryKey: nil, type: .REAL, nullable: true, defaultValue: .numericLiteral("123.123"), references: nil),
29+
(ColumnDefinition(name: "real_column", primaryKey: nil, type: .REAL, nullable: true,
30+
defaultValue: .numericLiteral("123.123"), references: nil),
2931
"\"real_column\" REAL DEFAULT 123.123")
3032
]
3133

0 commit comments

Comments
 (0)