We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aea9f9e commit 066ab6eCopy full SHA for 066ab6e
src/test/java/com/cedarsoftware/io/YearMonthTests.java
@@ -105,7 +105,7 @@ void testTopLevel_serializesAsISODate() {
105
YearMonth date = YearMonth.of(2014, 10);
106
String json = TestUtil.toJson(date);
107
YearMonth result = TestUtil.toObjects(json, null);
108
- assertThat(result).isEqualTo(date);
+ assert result.equals(date);
109
}
110
111
@Test
0 commit comments