Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Core: Cleanup assertion messages in partition spec tests #9528

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public void testAddMultipleBuckets() {
.bucket("id", 8, "id_bucket_8")
.build();

Assert.assertEquals("Should have a day and an hour time field", expected, bucket8);
Assert.assertEquals("Should have multiple bucket partition fields", expected, bucket8);
}

@Test
Expand Down Expand Up @@ -601,7 +601,7 @@ public void testRenameAfterAdd() {
}

@Test
public void testDeleteAndRename() {
public void testRenameAndDelete() {
Assertions.assertThatThrownBy(
() ->
new BaseUpdatePartitionSpec(formatVersion, PARTITIONED)
Expand All @@ -612,7 +612,7 @@ public void testDeleteAndRename() {
}

@Test
public void testRenameAndDelete() {
public void testDeleteAndRename() {
Assertions.assertThatThrownBy(
() ->
new BaseUpdatePartitionSpec(formatVersion, PARTITIONED)
Expand Down