mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-11-03 16:23:54 +01:00
LevelControllerTest.kt: modified property names to camel case to meet ktlint standard
This commit is contained in:
parent
1e5d26e5be
commit
07e466cf40
1 changed files with 6 additions and 6 deletions
|
|
@ -14,11 +14,11 @@ class LevelControllerTest {
|
|||
@Mock
|
||||
private lateinit var levelController: LevelController
|
||||
|
||||
private val IMAGES_UPLOADED_SAMPLE_VALUE = 0
|
||||
private val imagesUploadedSampleValue = 0
|
||||
|
||||
private val UNIQUE_IMAGES_USED_SAMPLE_VALUE = 0
|
||||
private val uniqueImagesUsedSampleValue = 0
|
||||
|
||||
private val NON_REVERT_RATE_SAMPLE_VALUE = 0
|
||||
private val nonRevertRateSampleValue = 0
|
||||
|
||||
private lateinit var levelInfo: LevelController.LevelInfo
|
||||
|
||||
|
|
@ -31,9 +31,9 @@ class LevelControllerTest {
|
|||
levelController = LevelController()
|
||||
levelInfo =
|
||||
LevelController.LevelInfo.from(
|
||||
IMAGES_UPLOADED_SAMPLE_VALUE,
|
||||
UNIQUE_IMAGES_USED_SAMPLE_VALUE,
|
||||
NON_REVERT_RATE_SAMPLE_VALUE,
|
||||
imagesUploadedSampleValue,
|
||||
uniqueImagesUsedSampleValue,
|
||||
nonRevertRateSampleValue,
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue