Skip to content

Commit

Permalink
Remove withDebug()
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSweers committed Dec 6, 2023
1 parent 1e62766 commit 0035c96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ class PlaygroundIT(val useKSP2: Boolean) {
@Test
fun testModuleName() {
File(project.root, "workload/build.gradle.kts")
val gradleRunner = GradleRunner.create().withDebug(true).withProjectDir(project.root)
val gradleRunner = GradleRunner.create().withProjectDir(project.root)
gradleRunner.withArguments("build").build().let { result ->
// TODO figure out why K2 uses the source set name and K1 uses the project name
val expectedName = if (useKSP2) "workload" else "main"
Expand Down

0 comments on commit 0035c96

Please sign in to comment.