File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
AmplifyPlugins/DataStore/AWSDataStoreCategoryPluginIntegrationTests Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -152,14 +152,16 @@ class DataStoreScalarTests: SyncEngineIntegrationTestBase {
152
152
XCTAssertNil ( emptyModel)
153
153
}
154
154
155
+ // TODO: Not sure how this was compiling and tested before, should be fixed with
156
+ // https://github.com/aws-amplify/amplify-ios/pull/1145
155
157
func testListContainerWithNil( ) throws {
156
158
try startAmplifyAndWaitForSync ( )
157
159
let container = ListStringContainer (
158
160
test: " test " ,
159
161
nullableString: nil ,
160
162
stringList: [ " value1 " ] ,
161
- stringNullableList: nil ,
162
- nullableStringList: [ nil ] ,
163
+ stringNullableList: [ ] , // TODO: test with `nil` with new codegen feature
164
+ nullableStringList: [ " value1 " ] , // TODO: test with `[nil]`
163
165
nullableStringNullableList: nil )
164
166
165
167
let updatedContainer = ListStringContainer ( id: container. id,
You can’t perform that action at this time.
0 commit comments