aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/bsdconv.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/bsdconv.rb b/Library/Formula/bsdconv.rb
index 056be1e9c..c75c2219f 100644
--- a/Library/Formula/bsdconv.rb
+++ b/Library/Formula/bsdconv.rb
@@ -19,7 +19,7 @@ class Bsdconv < Formula
Open3.popen3("#{bin}/bsdconv", "big5:utf-8") do |stdin, stdout, _|
stdin.write("\263\134\245\134\273\134")
stdin.close
- stdout.read == "許功蓋"
+ assert_equal "許功蓋", stdout.read
end
end
end