ktlint format
Test Workflow / Lint and test library (pull_request) Successful in 8m43s Details

This commit is contained in:
Gleb Koval 2023-12-30 22:31:55 +06:00
parent 04f704f916
commit d743e47e19
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
1 changed files with 9 additions and 5 deletions

View File

@ -77,7 +77,9 @@ class BackupClientTest {
assertDoesNotThrow("should recover file '$path'") {
runBlocking {
backupClient.restoreFile(
individualRestoreDir.resolve(path).parent, backupKey, path.toString()
individualRestoreDir.resolve(path).parent,
backupKey,
path.toString(),
)
}
}
@ -102,12 +104,14 @@ class BackupClientTest {
} else {
val originalBytes = path.toFile().readBytes().asList()
assertEquals(
originalBytes, restorePath.toFile().readBytes().asList(),
"File contents of '$path' should equal"
originalBytes,
restorePath.toFile().readBytes().asList(),
"File contents of '$path' should equal",
)
assertEquals(
originalBytes, individualRestorePath.toFile().readBytes().asList(),
"File contents of '$path' should equal (individual)"
originalBytes,
individualRestorePath.toFile().readBytes().asList(),
"File contents of '$path' should equal (individual)",
)
}
// cleanup