diff options
author | Shea Levy <shea@shealevy.com> | 2011-11-06T06·28+0000 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2011-11-06T06·28+0000 |
commit | 46876ff2037541613dc17c986f9b68b8f257cb3b (patch) | |
tree | c7caee24760cf9d126ae3b3454b31a77f348c115 | |
parent | af2e53fd481994cca46b9c003a6a8eae50cf951c (diff) |
Fix stupid typo in multiple outputs test
-rw-r--r-- | tests/multiple-outputs.b.builder.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/multiple-outputs.b.builder.sh b/tests/multiple-outputs.b.builder.sh index bc63fc0681b0..acf9390628d6 100644 --- a/tests/multiple-outputs.b.builder.sh +++ b/tests/multiple-outputs.b.builder.sh @@ -1,7 +1,7 @@ mkdir $out test "$firstOutput $secondOutput" = "$allOutputs" test "$defaultOutput" = "$firstOutput" -test "$(cat $first/file)" = "second" -test "$(cat $second/file)" = "first" +test "$(cat $firstOutput/file)" = "second" +test "$(cat $secondOutput/file)" = "first" echo "success" > $out/file |