Skip to content

Commit 2d22ca3

Browse files
committed
Format code
1 parent 316e75a commit 2d22ca3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Sentry.Tests/Platforms/iOS/RuntimeMarshalManagedExceptionIntegrationTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)