summaryrefslogtreecommitdiff
path: root/spec/ffi_yajl/parser_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ffi_yajl/parser_spec.rb')
-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 e8657d4..e4b1854 100644
--- a/spec/ffi_yajl/parser_spec.rb
+++ b/spec/ffi_yajl/parser_spec.rb
@@ -8,7 +8,7 @@ describe "FFI_Yajl::Parser" do
it "returns nil for an empty string (compatibility with yajl-ruby)" do
json = ''
- expect { parser.parse(json) }.to be_nil
+ expect( parser.parse(json) ).to be_nil
end
it "throws an exception when trailing braces are missing" do