Skip to content

Commit

Permalink
fix the same error in test
Browse files Browse the repository at this point in the history
  • Loading branch information
eric9204 committed Sep 25, 2024
1 parent bb20f37 commit 187727e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public void testUnawareBucketStreamingCompact() throws Exception {

checkLatestSnapshot(table, 2, Snapshot.CommitKind.APPEND);

// repairing that the ut don't specify the real parition of table
// repairing that the ut don't specify the real partition of table
runActionForUnawareTable(true);

// first compaction, snapshot will be 3
Expand Down Expand Up @@ -314,7 +314,7 @@ public void testUnawareBucketBatchCompact() throws Exception {

checkLatestSnapshot(table, 2, Snapshot.CommitKind.APPEND);

// repairing that the ut don't specify the real parition of table
// repairing that the ut don't specify the real partition of table
runActionForUnawareTable(false);

// first compaction, snapshot will be 3.
Expand Down Expand Up @@ -366,7 +366,7 @@ public void testSpecifyNonPartitionField() throws Exception {
rowData(1, 100, 15, BinaryString.fromString("20221209")));

Assertions.assertThatThrownBy(() -> runAction(false))
.hasMessage("Only parition key can be specialized in compaction action.");
.hasMessage("Only partition key can be specialized in compaction action.");
}

@Test
Expand Down

0 comments on commit 187727e

Please sign in to comment.