Skip to content

Commit 47aa88c

Browse files
authoredJan 23, 2020
Merge pull request #1003 from aplsup/fix-lint-test-code
fix: lint issue in test
2 parents 43d5d01 + 3d34465 commit 47aa88c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎provider/pact-jvm-provider-junit/src/test/groovy/au/com/dius/pact/provider/junit/descriptions/DescriptionGeneratorTest.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class DescriptionGeneratorTest extends Specification {
3434
def 'when BrokerUrlSource tests description includes tag if present'() {
3535
def interaction = new RequestResponseInteraction('Interaction 1',
3636
[ new ProviderState('Test State') ], new Request(), new Response())
37-
def pact = new RequestResponsePact(new Provider(), new Consumer("the-consumer-name"), [ interaction ])
37+
def pact = new RequestResponsePact(new Provider(), new Consumer('the-consumer-name'), [ interaction ])
3838

3939
expect:
4040
def pactSource = new BrokerUrlSource('url', 'url', [:], [:], tag)

0 commit comments

Comments
 (0)
Please sign in to comment.