Skip to content

Commit 78ae1a4

Browse files
committed
xunit/xunit#3144: FormatException from VsExecutionSink.LogError and .LogWarning
1 parent 87f2892 commit 78ae1a4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/xunit.runner.visualstudio/Utility/LoggerHelper.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,8 @@ public void SendMessage(
5555
TestMessageLevel level,
5656
string? assemblyName,
5757
string format,
58-
object? first,
5958
params object?[] args) =>
60-
SendMessage(InnerLogger, level, assemblyName, format, [first, .. args]);
59+
SendMessage(InnerLogger, level, assemblyName, format, args);
6160

6261
void SendMessage(
6362
IMessageLogger? logger,

0 commit comments

Comments
 (0)