File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
name : Build and test
2
2
on : [push, pull_request]
3
3
env :
4
- IOS_SIMULATOR : " iPhone 15 "
5
- IOS_VERSION : " 17.5 "
4
+ IOS_SIMULATOR : " iPhone 16 "
5
+ IOS_VERSION : " 18.0 "
6
6
jobs :
7
7
build :
8
8
runs-on : macos-15
Original file line number Diff line number Diff line change @@ -278,9 +278,9 @@ class SchemaChangerTests: SQLiteTestCase {
278
278
279
279
func test_create_table_add_column_expression( ) throws {
280
280
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 " ) )
284
284
}
285
285
286
286
let columns = try schema. columnDefinitions ( table: " foo " )
You can’t perform that action at this time.
0 commit comments