Skip to content

Commit f082a92

Browse files
204: Rename tests with `` chars
1 parent 94c33a3 commit f082a92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/commonTest/src/stress/map/PersistentHashMapBuilderTest.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ class PersistentHashMapBuilderTest : ExecutionTimeMeasuringTest() {
276276
}
277277

278278
@Test
279-
fun removingTwiceOnIteratorsThrowsIllegalStateException() {
279+
fun `removing twice on iterators throws IllegalStateException`() {
280280
val map: PersistentHashMap<Int, String> =
281281
persistentHashMapOf(1 to "a", 2 to "b", 3 to "c", 0 to "y", 32 to "z") as PersistentHashMap<Int, String>
282282
val builder = map.builder()
@@ -295,7 +295,7 @@ class PersistentHashMapBuilderTest : ExecutionTimeMeasuringTest() {
295295
}
296296

297297
@Test
298-
fun removingElementsFromDifferentIteratorsThrowsConcurrentModificationException() {
298+
fun `removing elements from different iterators throws ConcurrentModificationException`() {
299299
val map: PersistentHashMap<Int, String> =
300300
persistentHashMapOf(1 to "a", 2 to "b", 3 to "c", 0 to "y", 32 to "z") as PersistentHashMap<Int, String>
301301
val builder = map.builder()
@@ -313,7 +313,7 @@ class PersistentHashMapBuilderTest : ExecutionTimeMeasuringTest() {
313313
}
314314

315315
@Test
316-
fun removingElementFromOneIteratorAndAccessingAnotherThrowsConcurrentModificationException() {
316+
fun `removing element from one iterator and accessing another throws ConcurrentModificationException`() {
317317
val map = persistentHashMapOf(1 to "a", 2 to "b", 3 to "c")
318318
val builder = map.builder()
319319
val iterator1 = builder.entries.iterator()

0 commit comments

Comments
 (0)