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 11name : Build and test
22on : [push, pull_request]
33env :
4- IOS_SIMULATOR : " iPhone 15 "
5- IOS_VERSION : " 17.5 "
4+ IOS_SIMULATOR : " iPhone 16 "
5+ IOS_VERSION : " 18.0 "
66jobs :
77 build :
88 runs-on : macos-15
Original file line number Diff line number Diff 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 " )
You can’t perform that action at this time.
0 commit comments