Improve tests & validate FSEntry names #4

Merged
cyclane merged 6 commits from improve-tests into main 2024-01-07 16:09:24 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 9169206ed8 - Show all commits

View File

@ -1,7 +1,7 @@
package filesystem package filesystem
import java.nio.file.FileAlreadyExistsException import java.nio.file.FileAlreadyExistsException
import java.nio.file.Path import kotlin.io.path.Path
import kotlin.io.path.createDirectory import kotlin.io.path.createDirectory
import kotlin.io.path.createFile import kotlin.io.path.createFile
import kotlin.io.path.writeText import kotlin.io.path.writeText
@ -30,7 +30,7 @@ class FSCreator {
val queue = val queue =
ArrayDeque( ArrayDeque(
listOf( listOf(
entryToCreate to Path.of(destination), entryToCreate to Path(destination),
), ),
) )