Skip to content

Commit 1d1a271

Browse files
committed
Bump test dependencies
1 parent 0ad5814 commit 1d1a271

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

benchmark/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<?xml version="1.0" encoding="utf-8"?><!--
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
23
Designed and developed by 2022 skydoves (Jaewoong Eum)
34
45
Licensed under the Apache License, Version 2.0 (the "License");

core-database/src/main/kotlin/com/skydoves/pokedex/core/database/entitiy/mapper/PokemonEntityMapper.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ fun List<Pokemon>.asEntity(): List<PokemonEntity> {
4646
return PokemonEntityMapper.asEntity(this)
4747
}
4848

49-
fun List<PokemonEntity>.asDomain(): List<Pokemon> {
50-
return PokemonEntityMapper.asDomain(this)
49+
fun List<PokemonEntity>?.asDomain(): List<Pokemon> {
50+
return PokemonEntityMapper.asDomain(this.orEmpty())
5151
}

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ baselineProfiles = "1.3.1"
3232
macroBenchmark = "1.2.0-beta02"
3333
uiAutomator = "2.3.0-alpha04"
3434
truth = "1.1.3"
35-
junit = "4.13.1"
35+
junit = "4.13.2"
3636
turbine = "0.13.0"
37-
robolectric = "4.4"
38-
androidxTest = "1.3.0"
39-
androidxTestJunit = "1.1.2"
37+
robolectric = "4.10"
38+
androidxTest = "1.5.0"
39+
androidxTestJunit = "1.1.5"
4040
androidTestRunner = "1.3.0-beta01"
41-
espresso = "3.3.0"
41+
espresso = "3.5.1"
4242
mockitoKotlin = "2.2.0"
43-
mockitoInline = "3.5.13"
43+
mockitoInline = "3.12.4"
4444
spotless = "6.7.2"
4545

4646
[plugins]

0 commit comments

Comments
 (0)