aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vala.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/vala.rb')
-rw-r--r--Library/Formula/vala.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Formula/vala.rb b/Library/Formula/vala.rb
index 8105fb79e..93dd279ec 100644
--- a/Library/Formula/vala.rb
+++ b/Library/Formula/vala.rb
@@ -42,8 +42,6 @@ class Vala < Formula
system "#{bin}/valac", *valac_args
assert File.exist?(testpath/"hello.c")
- output = `#{testpath}/hello`
- assert_equal test_string, output
- assert_equal 0, $?.exitstatus
+ assert_equal test_string, shell_output("#{testpath}/hello")
end
end