Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
mvicsokolova committed Dec 19, 2023
1 parent 015b1ba commit 9fbc450
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ class PluginOrderBugTest {

@Test
fun testUserProjectBuild() {
val e = assertFailsWith<IllegalArgumentException> {
pluginOrderBugProject.cleanAndBuild()
}
check(e.message?.contains("unresolved reference: kotlinx") == true)
// val e = assertFailsWith<IllegalArgumentException> {
// pluginOrderBugProject.cleanAndBuild()
// }
val result = pluginOrderBugProject.cleanAndBuild()
assertFalse(result.isSuccessful)
// check(e.message?.contains("unresolved reference: kotlinx") == true)
}
}

0 comments on commit 9fbc450

Please sign in to comment.