aboutsummaryrefslogtreecommitdiff
path: root/src/test/groovy/net/fabricmc/loom
diff options
context:
space:
mode:
authormodmuss50 <modmuss50@gmail.com>2021-11-01 13:43:03 +0000
committerGitHub <noreply@github.com>2021-11-01 13:43:03 +0000
commit5f379e4f426951d55f0ac4889c5207f80afcf86c (patch)
tree3478c32d7404670e47013a5044dff33df1144e05 /src/test/groovy/net/fabricmc/loom
parentd01c20f0490db845a7f2bc634a50d5977878e486 (diff)
downloadarchitectury-loom-5f379e4f426951d55f0ac4889c5207f80afcf86c.tar.gz
architectury-loom-5f379e4f426951d55f0ac4889c5207f80afcf86c.tar.bz2
architectury-loom-5f379e4f426951d55f0ac4889c5207f80afcf86c.zip
Make CFR the default decompiler (#527)
* Make CFR the default decompiler Expose decompiler options * Remove convention, default value is an empty map. * Checkstyle..
Diffstat (limited to 'src/test/groovy/net/fabricmc/loom')
-rw-r--r--src/test/groovy/net/fabricmc/loom/test/integration/DecompileTest.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/groovy/net/fabricmc/loom/test/integration/DecompileTest.groovy b/src/test/groovy/net/fabricmc/loom/test/integration/DecompileTest.groovy
index daa2a511..d2ed4b26 100644
--- a/src/test/groovy/net/fabricmc/loom/test/integration/DecompileTest.groovy
+++ b/src/test/groovy/net/fabricmc/loom/test/integration/DecompileTest.groovy
@@ -45,8 +45,8 @@ class DecompileTest extends Specification implements GradleProjectTestTrait {
where:
decompiler | task | version
- 'fernflower' | "genSources" | DEFAULT_GRADLE
- 'fernflower' | "genSources" | PRE_RELEASE_GRADLE
+ 'fernflower' | "genSourcesWithFernFlower" | DEFAULT_GRADLE
+ 'fernflower' | "genSourcesWithFernFlower" | PRE_RELEASE_GRADLE
'cfr' | "genSourcesWithCfr" | DEFAULT_GRADLE
'cfr' | "genSourcesWithCfr" | PRE_RELEASE_GRADLE
}