diff options
| author | Mitchell Skaggs <skaggsm333@gmail.com> | 2019-06-16 13:31:58 -0500 | 
|---|---|---|
| committer | Mitchell Skaggs <skaggsm333@gmail.com> | 2019-06-16 13:31:58 -0500 | 
| commit | d5dad70de51157b55455c12d4b826db18fe9051e (patch) | |
| tree | fff1f15a635207b67e4c1d6e3358cf33f29a9171 /src/test/groovy/net/fabricmc/loom/MixinBuildFunctionalTest.groovy | |
| parent | ba6e435970651f3005d408f16b35afb01de07a8d (diff) | |
| download | architectury-loom-d5dad70de51157b55455c12d4b826db18fe9051e.tar.gz architectury-loom-d5dad70de51157b55455c12d4b826db18fe9051e.tar.bz2 architectury-loom-d5dad70de51157b55455c12d4b826db18fe9051e.zip | |
Update Gradle wrapper and make tests use older Gradle version to test compatibility
Diffstat (limited to 'src/test/groovy/net/fabricmc/loom/MixinBuildFunctionalTest.groovy')
| -rw-r--r-- | src/test/groovy/net/fabricmc/loom/MixinBuildFunctionalTest.groovy | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/test/groovy/net/fabricmc/loom/MixinBuildFunctionalTest.groovy b/src/test/groovy/net/fabricmc/loom/MixinBuildFunctionalTest.groovy index 488dd2bc..4ac2e903 100644 --- a/src/test/groovy/net/fabricmc/loom/MixinBuildFunctionalTest.groovy +++ b/src/test/groovy/net/fabricmc/loom/MixinBuildFunctionalTest.groovy @@ -59,9 +59,10 @@ class MixinBuildFunctionalTest extends Specification {  		when:  		def result = GradleRunner.create() -				.withPluginClasspath()  				.withProjectDir(testProjectDir.root)  				.withArguments('build') +				.withPluginClasspath() +				.withGradleVersion("5.1.1")  				.build()  		then: | 
