Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 936a1c2

Browse files
committed
chore: linting
1 parent 9d74271 commit 936a1c2

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

sqlite-storage/src/androidUnitTest/kotlin/org/asyncstorage/sqlitestorage/utils/FileTestHelper.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ actual class FileTestHelper actual constructor(path: String) {
2323
}
2424
}
2525

26-
actual fun fillWithChars(charCount: Int, char: String) {
26+
actual fun fillWithChars(
27+
charCount: Int,
28+
char: String,
29+
) {
2730
file.writeText(char.repeat(charCount))
2831
}
2932

sqlite-storage/src/commonTest/kotlin/org/asyncstorage/sqlitestorage/utils/FileTestHelper.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ expect class FileTestHelper(path: String) {
88
): FileTestHelper
99
}
1010

11-
fun fillWithChars(charCount: Int, char: String = "")
11+
fun fillWithChars(
12+
charCount: Int,
13+
char: String = "",
14+
)
1215

1316
fun exists(): Boolean
1417

sqlite-storage/src/iosTest/kotlin/org/asyncstorage/sqlitestorage/utils/FileTestHelper.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ actual class FileTestHelper actual constructor(path: String) {
4242
}
4343
}
4444

45-
actual fun fillWithChars(charCount: Int, char: String) {
45+
actual fun fillWithChars(
46+
charCount: Int,
47+
char: String,
48+
) {
4649
val content = char.repeat(charCount)
4750
try {
4851
(content as NSString).writeToFile(file, true)

0 commit comments

Comments
 (0)