Skip to content

Commit d3ba94b

Browse files
committed
Test renaming
1 parent 65a00fd commit d3ba94b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/test/java/com/fasterxml/jackson/failing/TestObjectIdWithInjectables639.java renamed to src/test/java/com/fasterxml/jackson/failing/ObjectIdWithInjectables639Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// This is probably impossible to handle, in general case, since
1212
// there is a cycle for Parent2/Child2... unless special handling
1313
// could be made to ensure that
14-
class TestObjectIdWithInjectables639 extends DatabindTestUtil {
14+
class ObjectIdWithInjectables639Test extends DatabindTestUtil {
1515
public static final class Context {
1616
}
1717

src/test/java/com/fasterxml/jackson/failing/TestObjectIdWithUnwrapping1298.java renamed to src/test/java/com/fasterxml/jackson/failing/ObjectIdWithUnwrapping1298Test.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import static org.junit.jupiter.api.Assertions.fail;
1919

2020
// Test case for https://github.com/FasterXML/jackson-databind/issues/1298
21-
class TestObjectIdWithUnwrapping1298 extends DatabindTestUtil {
21+
class ObjectIdWithUnwrapping1298Test extends DatabindTestUtil {
2222
static Long nextId = 1L;
2323

2424
public static final class ListOfParents {
@@ -49,7 +49,7 @@ public static final class Child {
4949

5050
public Child(@JsonProperty("name") String name) {
5151
this.name = name;
52-
this.id = TestObjectIdWithUnwrapping1298.nextId++;
52+
this.id = ObjectIdWithUnwrapping1298Test.nextId++;
5353
}
5454
}
5555

0 commit comments

Comments
 (0)