File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ def describe_message expected_response, interaction_context
108
108
include Pact ::RSpec ::Matchers
109
109
extend Pact ::Matchers ::Messages
110
110
111
- let ( :expected_content ) { expected_response . body [ :content ] }
111
+ let ( :expected_content ) { expected_response . body [ :content ] . as_json }
112
112
let ( :response ) { interaction_context . last_response }
113
113
let ( :differ ) { Pact . configuration . body_differ_for_content_type diff_content_type }
114
114
let ( :diff_formatter ) { Pact . configuration . diff_formatter_for_content_type diff_content_type }
@@ -117,11 +117,11 @@ def describe_message expected_response, interaction_context
117
117
let ( :response_body ) { parse_body_from_response ( response ) }
118
118
let ( :actual_content ) { response_body [ 'content' ] }
119
119
120
- it "has matching content" do
120
+ it "has matching content" do | example |
121
121
if response . status != 200
122
122
raise "An error was raised while verifying the message. The response body is: #{ response . body } "
123
123
end
124
- expect ( actual_content ) . to match_term expected_content , diff_options
124
+ expect ( actual_content ) . to match_term expected_content , diff_options , example
125
125
end
126
126
end
127
127
You can’t perform that action at this time.
0 commit comments