Skip to content

Commit 563cd67

Browse files
clean code
1 parent 9cce8f7 commit 563cd67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core-kotlin-modules/core-kotlin-collections-list-2/src/test/kotlin/changeMutableListValue/ChangeMutableListValueUnitTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class ChangeMutableListValueUnitTest {
2020
}
2121

2222
@Test
23-
fun `changes mutable list value using the map method`() {
23+
fun `creates new list with updated value using the map method`() {
2424
val mutableList = mutableListOf("kotlin", "java", "android")
2525
val updatedList = mutableList.map { element ->
2626
if (element == "java") {

0 commit comments

Comments
 (0)