Skip to content

Commit

Permalink
fix(plugin): Wrong separator of captured log
Browse files Browse the repository at this point in the history
  • Loading branch information
PeyaPeyaPeyang committed Nov 16, 2023
1 parent 7c4f351 commit 673785f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,6 @@ private TestReporter getTestReporter(boolean isRaw, boolean isVerbose, boolean i
{
List<TestReporter> reporters = new ArrayList<>();

if (isRaw)
reporters.add(new RawTestReporter());

if (isVerbose)
reporters.add(new BukkitTestReporter());
else
Expand All @@ -128,6 +125,9 @@ private TestReporter getTestReporter(boolean isRaw, boolean isVerbose, boolean i
if (isJunitReportingEnabled)
reporters.add(new JUnitReporter(this.resultWriter));

if (isRaw)
reporters.add(new RawTestReporter()); // ログキャプチャの都合で最後に置く。

return new ReportersBridge(reporters);
}

Expand Down

0 comments on commit 673785f

Please sign in to comment.