diff options
| author | Josh Hagins | 2016-10-24 12:29:22 -0400 |
|---|---|---|
| committer | GitHub | 2016-10-24 12:29:22 -0400 |
| commit | 4f73fa701210b803cd6a088f1a5b46f7bb4e129c (patch) | |
| tree | cc3c1cd4edd9b264d49293af8555c95f37f7b23f /Library/Homebrew/test/test_exceptions.rb | |
| parent | 3f3fa4d0f7d5c28598fb7a2495d01efa35c7f7a2 (diff) | |
| parent | b28b21fd7fec17e372f8bf0fe118c32318d44f84 (diff) | |
| download | brew-4f73fa701210b803cd6a088f1a5b46f7bb4e129c.tar.bz2 | |
Merge pull request #1363 from reitermarkus/rubocop-percent-literals
Don’t use bare percent literals.
Diffstat (limited to 'Library/Homebrew/test/test_exceptions.rb')
| -rw-r--r-- | Library/Homebrew/test/test_exceptions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_exceptions.rb b/Library/Homebrew/test/test_exceptions.rb index 671b433e4..689531c6e 100644 --- a/Library/Homebrew/test/test_exceptions.rb +++ b/Library/Homebrew/test/test_exceptions.rb @@ -13,7 +13,7 @@ class ExceptionsTest < Homebrew::TestCase end def test_formula_validation_error - assert_equal %(invalid attribute for formula 'foo': sha257 ("magic")), + assert_equal %q(invalid attribute for formula 'foo': sha257 ("magic")), FormulaValidationError.new("foo", "sha257", "magic").to_s end |
