Skip to content

Commit 9bd8a88

Browse files
lcompleteclaude
andcommitted
test: Remove redundant ISO format test in InstantStringConverterTest
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent b5d9218 commit 9bd8a88

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

app/server/huntly-jpa/src/test/java/com/huntly/jpa/converter/InstantStringConverterTest.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,6 @@ void convertToEntityAttribute_sqliteFormatWithoutMillis_returnsInstant() {
109109
assertThat(result).isEqualTo(expected);
110110
}
111111

112-
@Test
113-
void convertToEntityAttribute_isoFormat_returnsInstant() {
114-
String dbData = "2026-01-11T13:30:45.123Z";
115-
116-
Instant result = converter.convertToEntityAttribute(dbData);
117-
118-
assertThat(result).isEqualTo(Instant.parse("2026-01-11T13:30:45.123Z"));
119-
}
120-
121112
// ==================== Round-trip tests ====================
122113

123114
@Test

0 commit comments

Comments
 (0)