Skip to content

Commit 7aca94d

Browse files
fix lint issue
1 parent bff70d1 commit 7aca94d

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

android-kit-base/src/test/kotlin/com/mparticle/kits/KitManagerImplTest.kt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,7 @@ class KitManagerImplTest {
14081408
}
14091409

14101410
@Test
1411-
fun testConfirmHashedEmail_When_HashedEmailUserIdentityType_Is_Other3(){
1411+
fun testConfirmHashedEmail_When_HashedEmailUserIdentityType_Is_Other3() {
14121412
var runnable: Runnable = mock(Runnable::class.java)
14131413
var user: MParticleUser = mock(MParticleUser::class.java)
14141414
val instance = MockMParticle()
@@ -1435,7 +1435,7 @@ class KitManagerImplTest {
14351435
[
14361436
// add placement attributes here if needed
14371437
]
1438-
""".trimIndent(),
1438+
""".trimIndent(),
14391439
"hashedEmailUserIdentityType" to "Other3"
14401440
)
14411441
val field = KitConfiguration::class.java.getDeclaredField("settings")
@@ -1459,9 +1459,8 @@ class KitManagerImplTest {
14591459
verify(mockTask).addSuccessListener(any())
14601460
}
14611461

1462-
14631462
@Test
1464-
fun testConfirmHashedEmail_When_HashedEmailUserIdentityType_Is_UNASSIGNED(){
1463+
fun testConfirmHashedEmail_When_HashedEmailUserIdentityType_Is_UNASSIGNED() {
14651464
var runnable: Runnable = mock(Runnable::class.java)
14661465
var user: MParticleUser = mock(MParticleUser::class.java)
14671466
val instance = MockMParticle()
@@ -1488,7 +1487,7 @@ class KitManagerImplTest {
14881487
[
14891488
// add placement attributes here if needed
14901489
]
1491-
""".trimIndent(),
1490+
""".trimIndent(),
14921491
"hashedEmailUserIdentityType" to "UNASSIGNED"
14931492
)
14941493
val field = KitConfiguration::class.java.getDeclaredField("settings")

0 commit comments

Comments
 (0)