aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-07-28 19:32:33 +0200
committerMike McQuaid2014-07-28 19:36:09 +0200
commit0562888202f242e7fb3682c12910cbb87313cecd (patch)
treec299d8493e286ed96ea2d21eb602636ba3e871d1 /Library
parent6feb42cb2b33054b37b83b03257d38d4fa206c0e (diff)
downloadhomebrew-0562888202f242e7fb3682c12910cbb87313cecd.tar.bz2
tiff2png: use test fixture image.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/tiff2png.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/tiff2png.rb b/Library/Formula/tiff2png.rb
index 5658ed82f..46ea0a885 100644
--- a/Library/Formula/tiff2png.rb
+++ b/Library/Formula/tiff2png.rb
@@ -25,8 +25,8 @@ class Tiff2png < Formula
end
test do
- system "#{bin}/tiff2png", \
- "/System/Library/Frameworks/AppKit.framework/Versions/C/Resources/GrammarDot.tiff"
+ test_tiff = HOMEBREW_LIBRARY/"Homebrew/test/fixtures/test.tiff"
+ system "#{bin}/tiff2png", test_tiff
end
end