Skip to content

Commit b6abde9

Browse files
committed
style: apply spotless formatting to IcebergDataSinkFactoryTest
1 parent b5b103b commit b6abde9

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

flink-cdc-connect/flink-cdc-pipeline-connectors/flink-cdc-pipeline-connector-iceberg/src/test/java/org/apache/flink/cdc/connectors/iceberg/sink/IcebergDataSinkFactoryTest.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,9 @@ void testCreateGlueCatalogDataSink() {
122122
ImmutableMap.<String, String>builder()
123123
.put("catalog.properties.type", "glue")
124124
.put("catalog.properties.warehouse", "s3://my-bucket/warehouse")
125-
.put("catalog.properties.io-impl", "org.apache.iceberg.aws.s3.S3FileIO")
125+
.put(
126+
"catalog.properties.io-impl",
127+
"org.apache.iceberg.aws.s3.S3FileIO")
126128
.put("catalog.properties.client.region", "us-east-1")
127129
.put("catalog.properties.glue.skip-archive", "true")
128130
.build());
@@ -142,9 +144,13 @@ void testCreateGlueCatalogWithCatalogImpl() {
142144
Configuration conf =
143145
Configuration.fromMap(
144146
ImmutableMap.<String, String>builder()
145-
.put("catalog.properties.catalog-impl", "org.apache.iceberg.aws.glue.GlueCatalog")
147+
.put(
148+
"catalog.properties.catalog-impl",
149+
"org.apache.iceberg.aws.glue.GlueCatalog")
146150
.put("catalog.properties.warehouse", "s3://my-bucket/warehouse")
147-
.put("catalog.properties.io-impl", "org.apache.iceberg.aws.s3.S3FileIO")
151+
.put(
152+
"catalog.properties.io-impl",
153+
"org.apache.iceberg.aws.s3.S3FileIO")
148154
.build());
149155
DataSink dataSink =
150156
sinkFactory.createDataSink(

0 commit comments

Comments
 (0)