From d6b47f6448d2e66bcda78e89f232a7986d82734d Mon Sep 17 00:00:00 2001 From: Kevin Krauss Date: Wed, 5 Oct 2011 18:09:28 -0700 Subject: [PATCH] Changed {:foo, 'bar'} to {:foo => 'bar'} --- spec/guard/watcher_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/guard/watcher_spec.rb b/spec/guard/watcher_spec.rb index 1769f30..7458210 100644 --- a/spec/guard/watcher_spec.rb +++ b/spec/guard/watcher_spec.rb @@ -84,7 +84,7 @@ describe Guard::Watcher do end it "returns multiple files specified within the action" do - described_class.match_files(@guard, ['hash.rb']).should == [{:foo, 'bar'}] + described_class.match_files(@guard, ['hash.rb']).should == [{:foo => 'bar'}] end it "returns multiple files by combining the results of different actions" do