Skip to content

Commit

Permalink
GH-4104: added code formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Bart Hanssens <[email protected]>
  • Loading branch information
barthanssens committed Sep 2, 2022
1 parent 64646ce commit 9e49002
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -508,12 +508,12 @@ public void testTemporalAccessorLiteralNull() {
.hasMessageContaining("value may not be null");

}

@Test
public void testTemporalAccessorLiteralInstant() {
final Instant value = Instant.ofEpochSecond(1234567890, 12);
Literal literal = literal(value);

assertThat(literal).isNotNull();
assertThat(literal.temporalAccessorValue()).isEqualTo(value);
assertThat(literal.getLabel()).isEqualTo(value.toString());
Expand Down

0 comments on commit 9e49002

Please sign in to comment.