Skip to content

Commit f8d097e

Browse files
committed
DBZ-5419 Fix OracleSchemaMigrationIT (non-CDB) test failure
1 parent 69d5069 commit f8d097e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debezium-connector-oracle/src/test/java/io/debezium/connector/oracle/OracleSchemaMigrationIT.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1608,7 +1608,7 @@ private static void assertTableChangeColumn(Struct change, int index, String col
16081608

16091609
private static void assertSourceTableInfo(SourceRecord record, String schema, String table) {
16101610
final Struct source = ((Struct) record.value()).getStruct("source");
1611-
assertThat(source.get("db")).isEqualTo(TestHelper.DATABASE);
1611+
assertThat(source.get("db")).isEqualTo(TestHelper.getDatabaseName());
16121612
assertThat(source.get("schema")).isEqualTo(schema);
16131613
assertThat(source.get("table")).isEqualTo(table);
16141614
}

0 commit comments

Comments
 (0)