Skip to content

Commit 70a3765

Browse files
authored
chore: fix double call log formatting (#2805)
1 parent a3dd8ab commit 70a3765

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: playwright/_impl/_connection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -619,4 +619,4 @@ def format_call_log(log: Optional[List[str]]) -> str:
619619
return ""
620620
if len(list(filter(lambda x: x.strip(), log))) == 0:
621621
return ""
622-
return "\nCall log:\n" + "\n - ".join(log) + "\n"
622+
return "\nCall log:\n" + "\n".join(log) + "\n"

0 commit comments

Comments
 (0)