From 46876ff2037541613dc17c986f9b68b8f257cb3b Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Sun, 6 Nov 2011 06:28:25 +0000 Subject: [PATCH] Fix stupid typo in multiple outputs test --- tests/multiple-outputs.b.builder.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/multiple-outputs.b.builder.sh b/tests/multiple-outputs.b.builder.sh index bc63fc0681..acf9390628 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