Skip to content

Commit

Permalink
#49 small typo in the gradle verify task
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronald Holshausen committed Aug 25, 2014
1 parent c04d019 commit 2445e4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class PactVerificationTask extends DefaultTask {
interactionMessage + ' returns a response which')
displayHeadersResult(failures, expectedResponse.headers(), comparison.headers,
interactionMessage + ' returns a response which')
def expectedBody = expectedResponse.body().defined ? expectedResponse.bodyString().get() : ''
def expectedBody = expectedResponse.body().defined ? expectedResponse.body().get() : ''
displayBodyResult(failures, expectedBody, comparison.body,
interactionMessage + ' returns a response which')
} catch (e) {
Expand Down

0 comments on commit 2445e4e

Please sign in to comment.