Skip to content

Commit

Permalink
Fixed testsuite name that should be unique
Browse files Browse the repository at this point in the history
That was missing in
eclipse-jdt#2710

See eclipse-jdt#2536
  • Loading branch information
iloveeclipse authored and gayanper committed Sep 7, 2024
1 parent 305994e commit 2ab5c79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public CleanupAfterSuiteTests(String name) {
}

public static Test suite() {
TestSuite testSuite = new TestSuite("HouseKeeping_" + count);
TestSuite testSuite = new TestSuite("HouseKeeping_" + (count ++));
testSuite.addTest(new TestSuite(CleanupAfterSuiteTests.class));
return testSuite;
}
Expand Down

0 comments on commit 2ab5c79

Please sign in to comment.