Skip to content

Commit

Permalink
remove incorrect comments (#2893)
Browse files Browse the repository at this point in the history
  • Loading branch information
coffee-and-tea committed Mar 23, 2022
1 parent 33c026e commit fe90190
Showing 1 changed file with 0 additions and 8 deletions.
Expand Up @@ -13,14 +13,6 @@ import io.kotest.matchers.should
import io.kotest.matchers.shouldNot
import kotlin.jvm.JvmName

/**
* Verifies that this collection contains the sub collections provided in the exact given order.
*
* So, for example, listOf(1,2,3) contains exactly the sub collections:
*
* [], [1], [2], [3], [1,2], [2,3] and [1,2,3].
*
*/
@JvmName("shouldContainExactly_iterable")
infix fun <T> Iterable<T>?.shouldContainExactly(expected: Iterable<T>) =
this?.toList() should containExactly(expected.toList())
Expand Down

0 comments on commit fe90190

Please sign in to comment.