Skip to content

Commit

Permalink
More schema fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Melchior committed Oct 5, 2023
1 parent 17866c6 commit c03033a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ class AppTests {
// Create Realm in order to create the sync metadata Realm
val user = app.asTestApp.createUserAndLogin()
val syncConfig = SyncConfiguration
.Builder(user, setOf(ParentPk::class, ChildPk::class))
.Builder(user, FLEXIBLE_SYNC_SCHEMA)
.build()
Realm.open(syncConfig).close()

Expand Down Expand Up @@ -423,7 +423,7 @@ class AppTests {
// Create Realm in order to create the sync metadata Realm
val user = app.asTestApp.createUserAndLogin()
val syncConfig = SyncConfiguration
.Builder(user, setOf(ParentPk::class, ChildPk::class))
.Builder(user, FLEXIBLE_SYNC_SCHEMA)
.build()
Realm.open(syncConfig).close()

Expand Down

0 comments on commit c03033a

Please sign in to comment.