mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-12-27 19:38:53 +03:00
Fixes lint errors
This commit is contained in:
parent
92f87a3a5a
commit
275505b3e6
2 changed files with 3 additions and 2 deletions
|
@ -35,8 +35,9 @@ class LoginTypeTest {
|
|||
val types = LoginType.values()
|
||||
|
||||
types.forEach { type ->
|
||||
if (type != LoginType.UNKNOWN)
|
||||
if (type != LoginType.UNKNOWN) {
|
||||
LoginType.fromValue(type.value) shouldNotBeEqualTo LoginType.UNKNOWN
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue