Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RNET-992] Add sync support for collections in mixed #3556

Merged
merged 21 commits into from
Apr 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Another round for linting
rorbech committed Apr 5, 2024

Verified

This commit was signed with the committer’s verified signature.
commit 0df7b75b51ae6d161b748a29ef5ebb9101279685
3 changes: 1 addition & 2 deletions Tests/Realm.Tests/Sync/DataTypeSynchronizationTests.cs
Original file line number Diff line number Diff line change
@@ -658,7 +658,7 @@ await TestHelpers.WaitForConditionAsync(() => realm2.FindCore<SyncAllTypesObject
var syncedChild =
await TestHelpers.WaitForConditionAsync(() => realm2.FindCore<IntPropertyObject>(childId),
o => o != null);
var syncedValues = syncedParent.RealmValueProperty.AsList();
var syncedValues = syncedParent!.RealmValueProperty.AsList();
Assert.AreEqual(valuesValue[0], syncedValues[0]);
Assert.AreEqual(valuesValue[1], syncedValues[1]);
Assert.AreEqual(childId, syncedValues[2].AsRealmObject<IntPropertyObject>().Id);
@@ -735,7 +735,6 @@ await TestHelpers.WaitForConditionAsync(() => realm2.FindCore<IntPropertyObject>
},
};


[Test]
public void ListManipulations()
{