Skip to content

Commit 22064d2

Browse files
committed
CountryServiceImplTest: use single quotes for strings.
Should be in ab95ef6 commit. No functional changes.
1 parent b524b6d commit 22064d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/groovy/ru/mystamps/web/service/CountryServiceImplTest.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ class CountryServiceImplTest extends Specification {
8888
given:
8989
Integer expectedId = 7
9090
and:
91-
form.setName("Example Country")
91+
form.setName('Example Country')
9292
and:
93-
String expectedSlug = "example-country"
93+
String expectedSlug = 'example-country'
9494
and:
9595
jdbcCountryDao.add(_ as AddCountryDbDto) >> expectedId
9696
and:

0 commit comments

Comments
 (0)