Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Print.hs
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@ printShellTest format ShellTest{command=c,stdin=i,comments=comments,trailingComm
printComments trailingComments
"v2" -> do
printComments comments
printCommand "$$$ " c
printStdin "<<<" i
printCommand "$$$ " c
printStdouterr ">>>" o_expected
printStdouterr ">>>2" e_expected
printExitStatus False ">>>=" x_expected
printComments trailingComments
"v3" -> do
printComments comments
printCommand "$ " c
printStdin "<" i
printCommand "$ " c
printStdouterr ">" o_expected
printStdouterr ">2" e_expected
printExitStatus False ">=" x_expected
Expand Down