Skip to content

Commit

Permalink
fix: removed extra quote
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronald Holshausen committed Jun 15, 2020
1 parent 527f712 commit 551f86d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class PactVerificationExtension(
return when {
pactSource is BrokerUrlSource && pactSource.result != null -> {
var displayName = pactSource.result!!.name + " - ${interaction.description}"
if (pactSource.tag.isNotEmpty()) displayName += " (tag ${pactSource.tag})\""
if (pactSource.tag.isNotEmpty()) displayName += " (tag ${pactSource.tag})"
if (pactSource.result!!.pending) {
"$displayName [PENDING]"
} else {
Expand Down

0 comments on commit 551f86d

Please sign in to comment.