Skip to content

Commit 8188d24

Browse files
committed
Fix
1 parent 3700267 commit 8188d24

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

schema-loader/src/test/java/com/scalar/db/schemaloader/alteration/TableMetadataAlterationProcessorTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ public void computeAlteration_WithAddedClusteringKey_ShouldThrowIllegalArgumentE
6969
}
7070

7171
@Test
72-
public void
73-
computeAlteration_WithModifiedClusteringKeySortOrdering_ShouldThrowIllegalArgumentException() {
72+
public void computeAlteration_WithModifiedClusteringOrder_ShouldThrowIllegalArgumentException() {
7473
// Arrange
7574
TableMetadata oldMetadata =
7675
TableMetadata.newBuilder()
@@ -91,7 +90,7 @@ public void computeAlteration_WithAddedClusteringKey_ShouldThrowIllegalArgumentE
9190
assertThatThrownBy(
9291
() -> processor.computeAlteration(NAMESPACE, TABLE, oldMetadata, newMetadata))
9392
.isInstanceOf(UnsupportedOperationException.class)
94-
.hasMessageContaining("clustering ordering");
93+
.hasMessageContaining("clustering order");
9594
}
9695

9796
@Test

0 commit comments

Comments
 (0)