From 2cff0cb5fabe0764efa48d7c03822fea441f0aa0 Mon Sep 17 00:00:00 2001 From: Holger Just Date: Thu, 16 Feb 2017 20:54:11 +0100 Subject: [PATCH] Improve code formatting --- spec/rackstash/fields/array_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/rackstash/fields/array_spec.rb b/spec/rackstash/fields/array_spec.rb index ea9d34a..78d37a4 100644 --- a/spec/rackstash/fields/array_spec.rb +++ b/spec/rackstash/fields/array_spec.rb @@ -199,7 +199,7 @@ describe Rackstash::Fields::Array do it 'resolves nested procs with a custom scope' do expect( - array.concat(-> { [self, -> { self.to_s.upcase } ] }, scope: :stuff ) + array.concat(-> { [self, -> { self.to_s.upcase } ] }, scope: :stuff) ).to contain_exactly 'stuff', 'STUFF' end end