Skip to content

Commit

Permalink
Fix Syntax Error: reutrn
Browse files Browse the repository at this point in the history
  • Loading branch information
mspangler committed Aug 8, 2022
1 parent f6e06f1 commit edfb253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/webmock/request_pattern.rb
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ def matching_body_array?(query_parameters, pattern, content_type)

query_parameters.each_with_index do |actual, index|
expected = pattern[index]
reutrn false unless matching_values(actual, expected, content_type)
return false unless matching_values(actual, expected, content_type)
end

true
Expand Down

0 comments on commit edfb253

Please sign in to comment.