aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-06-08 21:26:25 -0500
committerJack Nagel2013-06-08 21:32:30 -0500
commitfb795a6e64a0b1f57443f623e8e7e9deccca6954 (patch)
tree27c2782f9c3ae08c861e40d1da736774f7bb60fd /Library
parentc92bb5e210a6b6f32e1d5f6fbda415e4d1185f89 (diff)
downloadhomebrew-fb795a6e64a0b1f57443f623e8e7e9deccca6954.tar.bz2
unac: use test assertion
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/unac.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/unac.rb b/Library/Formula/unac.rb
index db7acc32f..ef3a47fbf 100644
--- a/Library/Formula/unac.rb
+++ b/Library/Formula/unac.rb
@@ -43,7 +43,7 @@ class Unac < Formula
test do
require 'open3'
Open3.popen3("#{bin}/unaccent", "utf-8", "fóó") do |_, stdout, _|
- "foo" == stdout.read.strip
+ assert_equal "foo", stdout.read.strip
end
end
end