Skip to content

Commit 4445e4d

Browse files
authored
Merge pull request #1319 from stephencelis/fix-tests
Fully qualify Expression
2 parents 9a9d38a + 716394d commit 4445e4d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Build and test
22
on: [push, pull_request]
33
env:
4-
IOS_SIMULATOR: "iPhone 15"
5-
IOS_VERSION: "17.5"
4+
IOS_SIMULATOR: "iPhone 16"
5+
IOS_VERSION: "18.0"
66
jobs:
77
build:
88
runs-on: macos-15

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)