From 0c472ea6d9a5f96775c52d484064dddb871043e7 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 27 Sep 2016 13:02:07 +0100 Subject: [PATCH] test/test_create: fix rubocop style. --- Library/Homebrew/test/test_create.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/test/test_create.rb b/Library/Homebrew/test/test_create.rb index b30e855478..bb1a2cd2af 100644 --- a/Library/Homebrew/test/test_create.rb +++ b/Library/Homebrew/test/test_create.rb @@ -7,6 +7,6 @@ class IntegrationCommandTestCreate < IntegrationCommandTestCase formula_file = CoreTap.new.formula_dir/"testball.rb" assert formula_file.exist?, "The formula source should have been created" - assert_match %(sha256 "#{TESTBALL_SHA256}"), formula_file.read + assert_match %Q(sha256 "#{TESTBALL_SHA256}"), formula_file.read end end