Skip to content

Commit f3cb910

Browse files
committed
Fully qualify Expression
1 parent 9a9d38a commit f3cb910

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/SQLiteTests/Schema/SchemaChangerTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,9 @@ class SchemaChangerTests: SQLiteTestCase {
278278

279279
func test_create_table_add_column_expression() throws {
280280
try schemaChanger.create(table: "foo") { table in
281-
table.add(expression: Expression<String>("name"))
282-
table.add(expression: Expression<Int>("age"))
283-
table.add(expression: Expression<Double?>("salary"))
281+
table.add(expression: SQLite.Expression<String>("name"))
282+
table.add(expression: SQLite.Expression<Int>("age"))
283+
table.add(expression: SQLite.Expression<Double?>("salary"))
284284
}
285285

286286
let columns = try schema.columnDefinitions(table: "foo")

0 commit comments

Comments
 (0)