summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2015-07-10 13:27:50 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2015-07-10 13:27:50 -0700
commit1a7a0264c7734dfca9c29e11a039198cb6bd9840 (patch)
treee8ad9a4f32b116f9d2c6c6bb925b5a53e11750d7 /spec
parentdc53142bb1558153fb0da0dfeda8f27824eec8e9 (diff)
downloadffi-yajl-1a7a0264c7734dfca9c29e11a039198cb6bd9840.tar.gz
rubocop on 2.2 needs to ignore this line
it breaks 1.9 through 2.1 when rubocop fixes it.
Diffstat (limited to 'spec')
-rw-r--r--spec/ffi_yajl/parser_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ffi_yajl/parser_spec.rb b/spec/ffi_yajl/parser_spec.rb
index 87f5309..750567f 100644
--- a/spec/ffi_yajl/parser_spec.rb
+++ b/spec/ffi_yajl/parser_spec.rb
@@ -311,7 +311,7 @@ describe "FFI_Yajl::Parser" do
let(:options) { { symbolize_keys: true } }
it "should symbolize keys correctly" do
- expect(parser).to eq(:"日本語" => 1234)
+ expect(parser).to eq(:"日本語" => 1234) # rubocop:disable Style/HashSyntax
end
if RUBY_VERSION.to_f >= 1.9