ktlint format
Test Workflow / Lint and test library (pull_request) Successful in 1m57s Details

This commit is contained in:
Gleb Koval 2023-12-31 14:59:41 +06:00
parent b0b0c0f6c3
commit 2a07859e50
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
1 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ class BackupClientTest {
val bytes = ByteArray(1024 * 1024 * 32)
Random.nextBytes(bytes)
listOf(
Path("_test.txt").apply { writeBytes(bytes) }
Path("_test.txt").apply { writeBytes(bytes) },
)
},
"large directory structure" to {
@ -69,7 +69,7 @@ class BackupClientTest {
Path("_test/another-folder/c.txt").createFile(),
Path("_test/README.md").apply { writeBytes(bytes2) },
)
}
},
).map { (name, pathsGen) ->
DynamicTest.dynamicTest(name) {
val paths = pathsGen()