Skip to content

Commit 066ab6e

Browse files
committed
assertion issue (testing library, not code)
1 parent aea9f9e commit 066ab6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/cedarsoftware/io/YearMonthTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ void testTopLevel_serializesAsISODate() {
105105
YearMonth date = YearMonth.of(2014, 10);
106106
String json = TestUtil.toJson(date);
107107
YearMonth result = TestUtil.toObjects(json, null);
108-
assertThat(result).isEqualTo(date);
108+
assert result.equals(date);
109109
}
110110

111111
@Test

0 commit comments

Comments
 (0)