From 713ab84ded2cf560d905eb793a0ef7de173c0cfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Ara=C3=BAjo?= Date: Thu, 4 Aug 2016 07:12:57 -0300 Subject: [PATCH] bgrep: fix closing array brace position. --- Formula/bgrep.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Formula/bgrep.rb b/Formula/bgrep.rb index b9704201d1..202a06dc05 100644 --- a/Formula/bgrep.rb +++ b/Formula/bgrep.rb @@ -20,8 +20,7 @@ class Bgrep < Formula test do path = testpath/"hi.prg" path.binwrite [0x00, 0xc0, 0xa9, 0x48, 0x20, 0xd2, 0xff, - 0xa9, 0x49, 0x20, 0xd2, 0xff, 0x60 - ].pack("C*") + 0xa9, 0x49, 0x20, 0xd2, 0xff, 0x60].pack("C*") assert_equal "#{path}: 00000004\n#{path}: 00000009\n", shell_output("#{bin}/bgrep 20d2ff #{path}")