aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources
diff options
context:
space:
mode:
authormodmuss50 <modmuss50@gmail.com>2021-08-31 11:48:58 +0100
committerGitHub <noreply@github.com>2021-08-31 11:48:58 +0100
commit3ded0964c4282060ca9f50ef9db908d83b30e443 (patch)
tree6a06c2141bf6a5af30d733de709ebecc263a940c /src/test/resources
parent2277b93f8ded68e9e9d3d8e31700be7a6a190ddf (diff)
downloadarchitectury-loom-3ded0964c4282060ca9f50ef9db908d83b30e443.tar.gz
architectury-loom-3ded0964c4282060ca9f50ef9db908d83b30e443.tar.bz2
architectury-loom-3ded0964c4282060ca9f50ef9db908d83b30e443.zip
Refactor and improve tests (#466)
* Install and run a production server in tests * Small improvements * Add FabricAPI build test Create new GradleProjectTestTrait replacing the old trait Improve groovy code formatting. * Refactor tests * Fix MultiProjectTest + fix logging for fabric api test * Cleanup and fixes * Update fabric api + run in parallel for speed * Set server memory + fix error
Diffstat (limited to 'src/test/resources')
-rw-r--r--src/test/resources/projects/simple/src/main/java/net/fabricmc/example/ExampleMod.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/resources/projects/simple/src/main/java/net/fabricmc/example/ExampleMod.java b/src/test/resources/projects/simple/src/main/java/net/fabricmc/example/ExampleMod.java
index e5ed082e..e6985491 100644
--- a/src/test/resources/projects/simple/src/main/java/net/fabricmc/example/ExampleMod.java
+++ b/src/test/resources/projects/simple/src/main/java/net/fabricmc/example/ExampleMod.java
@@ -9,6 +9,6 @@ public class ExampleMod implements ModInitializer {
// However, some things (like resources) may still be uninitialized.
// Proceed with mild caution.
- System.out.println("Hello Fabric world!");
+ System.out.println("Hello simple Fabric mod");
}
}