update dependencies

This commit is contained in:
2021-05-07 13:33:35 +06:00
parent fde5d91375
commit 15e3430a55
4 changed files with 12 additions and 11 deletions

View File

@@ -68,7 +68,7 @@ class StringParseTest {
runTest {
val ranges = rangesEnds.map { it.first .. it.second }.flatten().toMutableList()
val expectedCollects = rangesEnds.sumBy { it.second - it.first + 1 }
val expectedCollects = rangesEnds.sumOf { it.second - it.first + 1 }
var collected = 0
flow.takeWhile { ranges.isNotEmpty() }.collect {