Skip to content

Commit 9e43bc7

Browse files
committed
New lines update
1 parent 86a0cfa commit 9e43bc7

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

ethree-common/src/main/java/com/virgilsecurity/android/common/exceptions/Exceptions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ class RegistrationException @JvmOverloads constructor(
8383

8484
class PrivateKeyExistsException @JvmOverloads constructor(
8585
override val message: String? = null, throwable: Throwable? = null
86-
) : RuntimeException(message, throwable)
86+
) : RuntimeException(message, throwable)

ethree-kotlin-coroutines/src/main/java/com/virgilsecurity/android/ethreecoroutines/extensions/CoroutineScopeExt.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ fun <T : Any> CoroutineScope.asyncWithCatch(
6464
else
6565
throw throwable
6666
}
67-
}
67+
}

tests/src/androidTest/java/com/virgilsecurity/android/ethree/kotlin/interaction/EThreeAuthTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,4 +332,4 @@ class EThreeAuthTest {
332332

333333
assertTrue(rotateFailed)
334334
}
335-
}
335+
}

tests/src/androidTest/java/com/virgilsecurity/android/ethree/kotlin/interaction/EThreeEncryptionTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,4 +410,4 @@ class EThreeEncryptionTest {
410410
const val MULTIPLY_TIMES = 10
411411
const val RAW_TEXT = "This is the best text ever made by the whole humanity."
412412
}
413-
}
413+
}

tests/src/androidTest/java/com/virgilsecurity/android/ethree/kotlin/interaction/EThreeNegativeTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,4 +308,4 @@ class EThreeNegativeTest {
308308
companion object {
309309
const val WRONG_IDENTITY = "WRONG_IDENTITY"
310310
}
311-
}
311+
}

tests/src/androidTest/java/com/virgilsecurity/android/ethree/utils/TestConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ class TestConfig {
6060
val DIRECTORY_PATH = InstrumentationRegistry.getTargetContext().filesDir.absolutePath
6161
val KEYSTORE_NAME = "virgil.keystore"
6262
}
63-
}
63+
}

tests/src/androidTest/java/com/virgilsecurity/android/ethree/utils/TestUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ class TestUtils {
4242
Thread.sleep(THROTTLE_TIMEOUT)
4343
}
4444
}
45-
}
45+
}

testscoroutines/src/androidTest/java/com/virgilsecurity/android/ethreeCoroutines/extension/DeferredExt.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ suspend fun <T : Any> Deferred<T>.awaitResult(): Result<T> = try {
5050
Success(await())
5151
} catch (throwable: Throwable) {
5252
Failure(throwable)
53-
}
53+
}

testscoroutines/src/androidTest/java/com/virgilsecurity/android/ethreeCoroutines/interaction/EThreeAuthTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,4 +261,4 @@ class EThreeAuthTest {
261261
}
262262
}
263263
}
264-
}
264+
}

testscoroutines/src/androidTest/java/com/virgilsecurity/android/ethreeCoroutines/interaction/EThreeEncryptionTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,4 +328,4 @@ class EThreeEncryptionTest {
328328
companion object {
329329
const val RAW_TEXT = "This is the best text ever made by the whole humanity."
330330
}
331-
}
331+
}

0 commit comments

Comments
 (0)