aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/basex.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/basex.rb b/Library/Formula/basex.rb
index 4bdc5cd35..10734ad51 100644
--- a/Library/Formula/basex.rb
+++ b/Library/Formula/basex.rb
@@ -19,7 +19,7 @@ class Basex < Formula
test do
require 'open3'
Open3.popen3("#{bin}/basex", "1 to 10") do |_, stdout, _|
- "1 2 3 4 5 6 7 8 9 10" == stdout.read
+ assert_equal "1 2 3 4 5 6 7 8 9 10", stdout.read
end
end
end