Skip to content

Commit e54f6df

Browse files
committed
lint
1 parent 8e3cd29 commit e54f6df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dokka-aws/src/test/kotlin/aws/sdk/kotlin/dokka/DokkaAwsTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ class DokkaAwsTest {
1717

1818
assumeTrue(
1919
testFile.exists(),
20-
"Skipping test: test file does not exist"
20+
"Skipping test: test file does not exist",
2121
)
2222

2323
val document = Jsoup.parse(testFile, "UTF-8")
2424

2525
val expectedScripts = listOf(
26-
"awshome_s_code.js"
26+
"awshome_s_code.js",
2727
)
2828

2929
val scripts = document.head().select("script[src]")
3030

3131
expectedScripts.forEach { expectedScript ->
3232
assertTrue(
3333
scripts.any { it.attr("src").endsWith(expectedScript) },
34-
"Expected script $expectedScript not found"
34+
"Expected script $expectedScript not found",
3535
)
3636
}
3737
}

0 commit comments

Comments
 (0)