Skip to content

Commit

Permalink
fix fail test
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry-024 committed Jan 13, 2025
1 parent 6f570ce commit f1c9ab7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ protected boolean supportsFormatTable() {
@Override
protected void checkPartition(Partition expected, Partition actual) {
assertThat(actual.recordCount()).isEqualTo(expected.recordCount());
assertThat(actual.lastFileCreationTime() / 1000).isEqualTo(expected.lastFileCreationTime());
assertThat(actual.lastFileCreationTime()).isEqualTo(expected.lastFileCreationTime() / 1000);
}

@Test
Expand Down

0 comments on commit f1c9ab7

Please sign in to comment.