Skip to content

Commit

Permalink
fix: fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod committed Jan 30, 2024
1 parent c61fd7f commit 7414da3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ void testSpanBatchForBatchInterface() throws IOException {

SpanBatch spanBatch = SpanBatch.newSpanBatch(singularBatches1);
assertEquals(spanBatch.getBatchType(), BatchType.SPAN_BATCH_TYPE);
assertEquals(spanBatch.getTimestamp(), singularBatches1.getFirst().getTimestamp());
assertEquals(
spanBatch.getTimestamp(BigInteger.ZERO),
singularBatches1.getFirst().getTimestamp(BigInteger.ZERO));
assertEquals(spanBatch.getStartEpochNum(), singularBatches1.getFirst().getEpochNum());

assertTrue(spanBatch.checkOriginHash(
Expand Down

0 comments on commit 7414da3

Please sign in to comment.