Skip to content

Commit 9c528d1

Browse files
authored
fix: CallLog formatting (#3135)
1 parent 03f15f2 commit 9c528d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Playwright/Transport/Connection.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ internal static string FormatCallLog(string[] log)
9999
{
100100
return string.Empty;
101101
}
102-
return "\nCall log:\n - " + string.Join("\n - ", log);
102+
return "\nCall log:\n" + string.Join("\n", log);
103103
}
104104

105105
public void Dispose()

0 commit comments

Comments
 (0)