mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 11:50:54 +07:00
[gradle] fix test (expected <-> actual), improve filtering
GitOrigin-RevId: 8cc1c0239cd3d33c81be18724d50e64946f16d2d
This commit is contained in:
committed by
intellij-monorepo-bot
parent
5d2d7744b8
commit
b91599f50f
@@ -344,10 +344,12 @@ open class GradleOutputParsersMessagesImportingTest : BuildViewMessagesImporting
|
||||
|
||||
assertSyncViewSelectedNode("finished", false) {
|
||||
val text = it!!.lineSequence()
|
||||
.dropWhile { s -> s == "Starting Gradle Daemon..." || s.startsWith("Gradle Daemon started in") }
|
||||
.dropWhile { s -> s == "Starting Gradle Daemon..."
|
||||
|| s.startsWith("Gradle Daemon started in")
|
||||
|| s.startsWith("Download ") }
|
||||
.joinToString(separator = "\n")
|
||||
|
||||
assertEquals(text, scriptOutputText + scriptOutputTextWOEol)
|
||||
assertEquals( scriptOutputText + scriptOutputTextWOEol, text)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user