We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d49f90b commit fc7728aCopy full SHA for fc7728a
test/WebJobs.Script.Tests.Integration/ScriptHostEndToEnd/DirectLoadEndToEndTests.cs
@@ -87,9 +87,9 @@ public async Task Invoke_ExceptionThrown_DetailsLogged()
87
Assert.Equal(2, errorLogs.Length);
88
89
// first log is the result
90
- Assert.Equal(LogCategories.Results, errorLogs[0].Category);
+ Assert.Equal(LogCategories.Results, errorLogs[1].Category);
91
92
- var error = errorLogs[1];
+ var error = errorLogs[0];
93
var invocationException = (FunctionInvocationException)error.Exception;
94
Assert.Equal("Exception while executing function: Function1", invocationException.Message);
95
Assert.Equal("TestFunctions.Function1.Run", invocationException.MethodName);
0 commit comments