Skip to content
This repository has been archived by the owner on Sep 18, 2020. It is now read-only.

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Jul 28, 2011
1 parent 0c4916d commit 9091e81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/roulette/each_store_spec.rb
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class FakeKeyValueStore
it "sends any method to all stores" do it "sends any method to all stores" do
fired_method = :sadd fired_method = :sadd
@stores.each do |store| @stores.each do |store|
store.should_receive(fired_method).with(@args) store.should_receive(fired_method).with(*@args)
end end
Roulette::EachStore.new(@stores).send fired_method, *@args Roulette::EachStore.new(@stores).send fired_method, *@args
end end
Expand Down

0 comments on commit 9091e81

Please sign in to comment.