Skip to content
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
Fix tests
  • Loading branch information
aritchie committed Mar 3, 2025
commit fe5b3c00bb46ee724be441619eb362cf3164fb2c
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
native.User = new JavaSdk.Protocol.User
{
Id = "user id",
Name = "test name",
Username = "test",
Email = "[email protected]",
IpAddress = "127.0.0.1"
Expand All @@ -97,7 +98,7 @@
native.Release.Should().Be(managed.Release, "Release");
native.Environment.Should().Be(managed.Environment, "Environment");
native.Transaction.Should().Be(managed.TransactionName!, "Transaction");
native.Level!.ToString().Should().Be(managed.Level.ToString(), "Level");
native.Level!.ToString().ToUpper().Should().Be(managed.Level.ToUpper().ToString(), "Level");

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / build

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / build

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / .NET (ubuntu-22.04)

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / .NET (ubuntu-22.04)

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / .NET (ubuntu-22.04)

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / .NET (ubuntu-22.04)

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / .NET (windows-latest)

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / .NET (windows-latest)

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / .NET (windows-latest)

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'

Check failure on line 101 in test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs

View workflow job for this annotation

GitHub Actions / .NET (windows-latest)

There is no argument given that corresponds to the required parameter 'destination' of 'MemoryExtensions.ToUpper(ReadOnlySpan<char>, Span<char>, CultureInfo?)'
native.Throwable.Message.Should().Be(managed.Exception!.Message, "Message should match");

// extras
Expand Down
Loading