Skip to content

Commit

Permalink
Show event sequence on new lines (#1079)
Browse files Browse the repository at this point in the history
  • Loading branch information
arcz authored Jun 19, 2023
1 parent e9860f3 commit a7d9290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Echidna/UI/Report.hs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ ppFail b es xs = do
<> ppEvents es

ppEvents :: Events -> String
ppEvents es = if null es then "" else "Event sequence: " <> T.unpack (T.intercalate ", " es)
ppEvents es = if null es then "" else unlines $ "Event sequence:" : (T.unpack <$> es)

-- | Pretty-print the status of a test.

Expand Down

0 comments on commit a7d9290

Please sign in to comment.