From 3dd59c91d77d98b30fe52150977c90c10e6b2452 Mon Sep 17 00:00:00 2001 From: ilovezfs Date: Mon, 9 Oct 2017 02:32:37 -0700 Subject: [PATCH] grsync: use assert_predicate --- Formula/grsync.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/grsync.rb b/Formula/grsync.rb index 9b0b7bec43..7ae889817f 100644 --- a/Formula/grsync.rb +++ b/Formula/grsync.rb @@ -27,6 +27,6 @@ class Grsync < Formula test do # running the executable always produces the GUI, which is undesirable for the test # so we'll just check if the executable exists - assert (bin/"grsync").exist? + assert_predicate bin/"grsync", :exist? end end