Skip to content

Commit 91e2be9

Browse files
committed
test: avoid double quotes in test method names
Gradle names report files after the test method, and quotes are not valid in Windows filenames.
1 parent 5292a17 commit 91e2be9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

backend/app/src/test/kotlin/io/tolgee/api/v2/controllers/translations/v2TranslationsController/TranslationsControllerFilterTest.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ class TranslationsControllerFilterTest : ProjectAuthControllerTest("/v2/projects
385385

386386
@ProjectJWTAuthTestMethod
387387
@Test
388-
fun `filters "without tag" specified by empty tag`() {
388+
fun `filters 'without tag' specified by empty tag`() {
389389
testData.addFewKeysWithTags()
390390
testData.addKeysWithScreenshots()
391391
testDataService.saveTestData(testData.root)
@@ -418,7 +418,7 @@ class TranslationsControllerFilterTest : ProjectAuthControllerTest("/v2/projects
418418

419419
@ProjectJWTAuthTestMethod
420420
@Test
421-
fun `filters in combination with "without tag"`() {
421+
fun `filters in combination with 'without tag'`() {
422422
testData.addFewKeysWithTags()
423423
testData.addKeysWithScreenshots()
424424
testDataService.saveTestData(testData.root)
@@ -454,7 +454,7 @@ class TranslationsControllerFilterTest : ProjectAuthControllerTest("/v2/projects
454454

455455
@ProjectJWTAuthTestMethod
456456
@Test
457-
fun `excludes by "Without tag"`() {
457+
fun `excludes by 'Without tag'`() {
458458
testData.addKeysWithScreenshots()
459459
testDataService.saveTestData(testData.root)
460460
userAccount = testData.user
@@ -482,7 +482,7 @@ class TranslationsControllerFilterTest : ProjectAuthControllerTest("/v2/projects
482482

483483
@ProjectJWTAuthTestMethod
484484
@Test
485-
fun `excludes in combination with "Without tag"`() {
485+
fun `excludes in combination with 'Without tag'`() {
486486
testData.addKeysWithScreenshots()
487487
testDataService.saveTestData(testData.root)
488488
userAccount = testData.user

0 commit comments

Comments
 (0)