Skip to content

Commit 590da47

Browse files
schoettlsimonmichael
authored andcommitted
Bugfix: fix order of stdin and command
1 parent 5c63842 commit 590da47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Print.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ printShellTest format ShellTest{command=c,stdin=i,comments=comments,trailingComm
2323
printComments trailingComments
2424
"v2" -> do
2525
printComments comments
26-
printCommand "$$$ " c
2726
printStdin "<<<" i
27+
printCommand "$$$ " c
2828
printStdouterr ">>>" o_expected
2929
printStdouterr ">>>2" e_expected
3030
printExitStatus False ">>>=" x_expected
3131
printComments trailingComments
3232
"v3" -> do
3333
printComments comments
34-
printCommand "$ " c
3534
printStdin "<" i
35+
printCommand "$ " c
3636
printStdouterr ">" o_expected
3737
printStdouterr ">2" e_expected
3838
printExitStatus False ">=" x_expected

0 commit comments

Comments
 (0)