From 8cf4de9524a1e9fc4b40b232783b3bc359e0e1a6 Mon Sep 17 00:00:00 2001 From: Thierry Moisan Date: Tue, 20 Apr 2021 21:20:13 -0400 Subject: [PATCH] bpytop: fix test (#75624) --- Formula/bpytop.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/bpytop.rb b/Formula/bpytop.rb index 5c0b8bface506..0e4097e494618 100644 --- a/Formula/bpytop.rb +++ b/Formula/bpytop.rb @@ -48,7 +48,7 @@ def install log = (config/"error.log").read assert_match "bpytop version #{version} started with pid #{pid}", log - assert_not_match(/ERROR:/, log) + refute_match(/ERROR:/, log) ensure Process.kill("TERM", pid) end