Skip to content

Commit

Permalink
Another round for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
rorbech committed Apr 5, 2024
1 parent e8b90e1 commit 0df7b75
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Tests/Realm.Tests/Sync/DataTypeSynchronizationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -735,7 +735,6 @@ await TestHelpers.WaitForConditionAsync(() => realm2.FindCore<IntPropertyObject>
},
};


[Test]
public void ListManipulations()
{
Expand Down

0 comments on commit 0df7b75

Please sign in to comment.