We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c511fd commit 804464dCopy full SHA for 804464d
test/JsonApiDotNetCoreTests/IntegrationTests/ExceptionHandling/ExceptionHandlerTests.cs
@@ -150,7 +150,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
150
error.Detail.Should().Be("Exception has been thrown by the target of an invocation.");
151
152
IEnumerable<string> stackTraceLines = ((JsonElement)error.Meta["stackTrace"]).EnumerateArray().Select(token => token.GetString());
153
- stackTraceLines.Should().ContainMatch("*at object System.Reflection.*");
+ stackTraceLines.Should().ContainMatch("*ThrowingArticle*");
154
155
responseDocument.Meta.Should().BeNull();
156
0 commit comments