Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
nirinchev committed Aug 23, 2024
1 parent 3cf2446 commit c9387d4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
namespace Realms.Tests.Sync
{
[TestFixture, Preserve(AllMembers = true)]
public class SynchronizedInstanceTests : SyncTestBase
public class

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Code Coverage

Identifier expected [/home/runner/work/realm-dotnet/realm-dotnet/Tests/Realm.Tests/Realm.Tests.csproj::TargetFramework=net8.0]

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test net6.0, linux-x64

Identifier expected

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test net8.0, osx-arm64

Identifier expected

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Xamarin.iOS

Identifier expected [/Users/runner/work/realm-dotnet/realm-dotnet/Tests/Realm.Tests/Realm.Tests.csproj]

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test .NET Framework

Identifier expected [D:\a\realm-dotnet\realm-dotnet\Tests\Realm.Tests\Realm.Tests.csproj::TargetFramework=net461]

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Xamarin.tvOS

Identifier expected [/Users/runner/work/realm-dotnet/realm-dotnet/Tests/Realm.Tests/Realm.Tests.csproj]

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test net6.0, osx-x64

Identifier expected

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Xamarin.macOS

Identifier expected [/Users/runner/work/realm-dotnet/realm-dotnet/Tests/Realm.Tests/Realm.Tests.csproj]

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Woven Classes

Identifier expected [D:\a\realm-dotnet\realm-dotnet\Tests\Realm.Tests\Realm.Tests.csproj::TargetFramework=net8.0]

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test net6.0, win-x64

Identifier expected

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Package Unity

Identifier expected [D:\a\realm-dotnet\realm-dotnet\Tests\Realm.Tests\Realm.Tests.csproj::TargetFramework=netstandard2.0]

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Xamarin.Android

Identifier expected [D:\a\realm-dotnet\realm-dotnet\Tests\Realm.Tests\Realm.Tests.csproj::TargetFramework=netstandard2.0]

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test UWP

Identifier expected [D:\a\realm-dotnet\realm-dotnet\Tests\Realm.Tests\Realm.Tests.csproj::TargetFramework=netstandard2.0]

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Maui.Android

Identifier expected

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Maui.MacCatalyst

Identifier expected

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Maui.MacCatalyst

Identifier expected

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Maui.iOS

Identifier expected

Check failure on line 37 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Maui.iOS

Identifier expected
: SyncTestBase
{

Check failure on line 39 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Xamarin.iOS

} expected [/Users/runner/work/realm-dotnet/realm-dotnet/Tests/Realm.Tests/Realm.Tests.csproj]

Check failure on line 39 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Xamarin.tvOS

} expected [/Users/runner/work/realm-dotnet/realm-dotnet/Tests/Realm.Tests/Realm.Tests.csproj]

Check failure on line 39 in Tests/Realm.Tests/Sync/SynchronizedInstanceTests.cs

View workflow job for this annotation

GitHub Actions / Test Xamarin.macOS

} expected [/Users/runner/work/realm-dotnet/realm-dotnet/Tests/Realm.Tests/Realm.Tests.csproj]
private const int OneMegabyte = 1024 * 1024;
private const int NumberOfObjects = 4;
Expand Down Expand Up @@ -803,7 +804,7 @@ public void SyncLogger_WhenLevelChanges_LogsAtNewLevel()
}

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

0 comments on commit c9387d4

Please sign in to comment.