Skip to content

Commit 53471ca

Browse files
committed
code format
1 parent e11ddbd commit 53471ca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-mysql/src/test/java/org/apache/flink/cdc/connectors/mysql/source/MySqlDataSourceFactoryTest.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,10 @@ public void testOptionalOption() {
266266
Factory.Context context = new MockContext(Configuration.fromMap(options));
267267
MySqlDataSourceFactory factory = new MySqlDataSourceFactory();
268268
assertThat(factory.optionalOptions())
269-
.contains(TREAT_TINYINT1_AS_BOOLEAN_ENABLED, PARSE_ONLINE_SCHEMA_CHANGES, SCAN_BINLOG_NEWLY_ADDED_TABLE_ENABLED);
269+
.contains(
270+
TREAT_TINYINT1_AS_BOOLEAN_ENABLED,
271+
PARSE_ONLINE_SCHEMA_CHANGES,
272+
SCAN_BINLOG_NEWLY_ADDED_TABLE_ENABLED);
270273

271274
MySqlDataSource dataSource = (MySqlDataSource) factory.createDataSource(context);
272275
assertThat(dataSource.getSourceConfig().isTreatTinyInt1AsBoolean()).isFalse();

0 commit comments

Comments
 (0)