File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -95,10 +95,10 @@ internal class FakeTransport : ITransport
9595 }
9696
9797 It " 'dotnet publish' produces an app that's recognized as AOT by Sentry" {
98- runConsoleApp | Should - AnyElementMatch ' This looks like an AOT application build.'
98+ runConsoleApp | Should - AnyElementMatch ' This looks like a NativeAOT application build.'
9999 }
100100
101101 It " 'dotnet run' produces an app that's recognized as JIT by Sentry" {
102- runConsoleApp $false | Should - AnyElementMatch ' This looks like a JIT application build.'
102+ runConsoleApp $false | Should - AnyElementMatch ' This looks like a standard JIT/AOT application build.'
103103 }
104104}
Original file line number Diff line number Diff line change @@ -48,9 +48,9 @@ internal SentryClient(
4848 options . SetupLogging ( ) ; // Only relevant if this client wasn't created as a result of calling Init
4949
5050 if ( AotHelper . IsNativeAot ) {
51- options . LogDebug ( "This looks like an NativeAOT application build." ) ;
51+ options . LogDebug ( "This looks like a NativeAOT application build." ) ;
5252 } else {
53- options . LogDebug ( "This looks like a JIT/AOT application build." ) ;
53+ options . LogDebug ( "This looks like a standard JIT/AOT application build." ) ;
5454 }
5555
5656 if ( worker == null )
You can’t perform that action at this time.
0 commit comments