Skip to content

Commit 6410d48

Browse files
committed
misc: Weird maven test runner problem on CI
1 parent f09698b commit 6410d48

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<groupId>org.apache.maven.plugins</groupId>
8484
<artifactId>maven-surefire-plugin</artifactId>
85-
<version>3.0.0-M7</version>
85+
<version>3.2.2</version>
8686
</plugin>
8787
</plugins>
8888
</build>

src/test/java/software/coley/collections/Bidi.java renamed to src/test/java/software/coley/collections/BidiTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* Tests for {@link BiMap}
1515
*/
1616
@SuppressWarnings("all")
17-
public class Bidi {
17+
public class BidiTest {
1818
@Nested
1919
class Hash {
2020
@Test

src/test/java/software/coley/collections/Trees.java renamed to src/test/java/software/coley/collections/TreeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Tests for {@link Tree}
1313
*/
14-
public class Trees {
14+
public class TreeTest {
1515
@Test
1616
public void test_equality() {
1717
Tree<String, String> tree1 = new TreeImpl<>("root");

0 commit comments

Comments
 (0)