Skip to content

Commit e08b175

Browse files
committed
CDM-63 Fixed typos
1 parent a931bcb commit e08b175

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/com/datastax/cdm/schema/BaseTable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private String getKeyspaceTableAsString(IPropertyHelper propertyHelper, boolean
4343
keyspaceTableString = propertyHelper.getString(KnownProperties.ORIGIN_KEYSPACE_TABLE);
4444
}
4545
if (StringUtils.isBlank(keyspaceTableString)) {
46-
throw new RuntimeException("Value for required property " + KnownProperties.ORIGIN_KEYSPACE_TABLE + " now provided!!");
46+
throw new RuntimeException("Value for required property " + KnownProperties.ORIGIN_KEYSPACE_TABLE + " not provided!!");
4747
}
4848

4949
return keyspaceTableString.trim();

src/test/java/com/datastax/cdm/schema/BaseTableTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ public void useTargetWhenTargetPresent() {
4545
@Test
4646
public void failWhenKsTableAbsent() {
4747
RuntimeException thrown = assertThrows(RuntimeException.class, () -> new BaseTable(propertyHelper, false));
48-
assertTrue(thrown.getMessage().contentEquals("Value for required property " + KnownProperties.ORIGIN_KEYSPACE_TABLE + " now provided!!"));
48+
assertTrue(thrown.getMessage().contentEquals("Value for required property " + KnownProperties.ORIGIN_KEYSPACE_TABLE + " not provided!!"));
4949
}
5050
}

0 commit comments

Comments
 (0)