File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/Sentry.Tests/Platforms/iOS Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public void Handle_WithException_CaptureEvent()
2323 var sut = _fixture . GetSut ( ) ;
2424 sut . Register ( _fixture . Hub , SentryOptions ) ;
2525
26- sut . Handle ( this , new MarshalManagedExceptionEventArgs { Exception = new Exception ( ) } ) ;
26+ sut . Handle ( this , new MarshalManagedExceptionEventArgs { Exception = new Exception ( ) } ) ;
2727
2828 _fixture . Hub . Received ( 1 ) . CaptureEvent ( Arg . Any < SentryEvent > ( ) ) ;
2929 }
@@ -35,7 +35,7 @@ public void Handle_WithException_IsHandledFalse()
3535 sut . Register ( _fixture . Hub , SentryOptions ) ;
3636
3737 var exception = new Exception ( ) ;
38- sut . Handle ( this , new MarshalManagedExceptionEventArgs { Exception = exception } ) ;
38+ sut . Handle ( this , new MarshalManagedExceptionEventArgs { Exception = exception } ) ;
3939 Assert . Equal ( false , exception . Data [ Mechanism . HandledKey ] ) ;
4040 Assert . True ( exception . Data . Contains ( Mechanism . MechanismKey ) ) ;
4141
You can’t perform that action at this time.
0 commit comments