Skip to content

Commit

Permalink
fix broken build
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed Aug 23, 2024
1 parent c9387d4 commit 6eb7b2f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@
namespace Realms.Tests.Sync
{
[TestFixture, Preserve(AllMembers = true)]
public class
: SyncTestBase
public class SynchronizedInstanceTests : SyncTestBase
{
private const int OneMegabyte = 1024 * 1024;
private const int NumberOfObjects = 4;
Expand Down Expand Up @@ -804,7 +803,7 @@ public void SyncLogger_WhenLevelChanges_LogsAtNewLevel()
}

var regex = new Regex("Connection\\[\\d+] Session\\[\\d+]");
var logger = RealmLogger.Function((level, category, msg) =>
var logger = RealmLogger.Function((level, _, msg) =>
{
if (regex.IsMatch(msg))
{
Expand Down

0 comments on commit 6eb7b2f

Please sign in to comment.