Skip to content

Commit

Permalink
Fixed bug where include_responses_for should have splatted the args
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwhite committed Oct 10, 2008
1 parent 06da19d commit d8ca73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ardes/response_for.rb
Expand Up @@ -107,7 +107,7 @@ def action_responses
def include_responses_from(responses_container)
responses_container.action_responses.each do |action, responses|
action_responses[action] ||= []
action_responses[action].unshift(responses)
action_responses[action].unshift(*responses)
end
end

Expand Down

0 comments on commit d8ca73c

Please sign in to comment.