Skip to content

Commit 4f23fd8

Browse files
Apply suggestions from code review
fix argument order
1 parent e817859 commit 4f23fd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Sentry.Tests/Protocol/Exceptions/SentryStackFrameTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ public void ConfigureAppFrame_WithDefaultOptions_ExcludesMonoFrames(string packa
256256
sut.ConfigureAppFrame(options);
257257

258258
// Assert
259-
Assert.Equal(sut.InApp, expectedInApp);
259+
Assert.Equal(expectedInApp, sut.InApp);
260260
}
261261

262262
[Theory]
@@ -276,7 +276,7 @@ public void ConfigureAppFrame_WithDefaultOptions_ExcludesXamarinFrames(string pa
276276
sut.ConfigureAppFrame(options);
277277

278278
// Assert
279-
Assert.Equal(sut.InApp, expectedInApp);
279+
Assert.Equal(expectedInApp, sut.InApp);
280280
}
281281

282282
[Fact]

0 commit comments

Comments
 (0)