Skip to content

Commit

Permalink
rename formatters to dumpers
Browse files Browse the repository at this point in the history
  • Loading branch information
Minecraftschurli committed Mar 18, 2024
1 parent 97ea53f commit 0483bc2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import net.neoforged.testframework.conf.Feature;
import net.neoforged.testframework.conf.FrameworkConfiguration;
import net.neoforged.testframework.impl.MutableTestFramework;
import net.neoforged.testframework.summary.GitHubActionsStepSummaryDumper;
import net.neoforged.testframework.summary.GitHubActionsStepSummaryFormatter;
import org.lwjgl.glfw.GLFW;

Expand All @@ -34,7 +35,7 @@ private static void init(ModContainer container) {
.openManagerKey(GLFW.GLFW_KEY_N)
.build())
.enable(Feature.CLIENT_SYNC, Feature.CLIENT_MODIFICATIONS, Feature.TEST_STORE)
.formatters(new GitHubActionsStepSummaryFormatter("Bibliocraft Gametest Summary"))
.dumpers(new GitHubActionsStepSummaryDumper("Bibliocraft Gametest Summary"))
.build().create();

framework.init(container.getEventBus(), container);
Expand Down

0 comments on commit 0483bc2

Please sign in to comment.