Skip to content

Commit 22b4077

Browse files
committed
fix: Beautify for checkstyle
1 parent 5fd4716 commit 22b4077

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/io/aiven/kafka/connect/transforms/KeyToValueTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,11 @@ public void errorCantAppendToValue() {
258258
@Test
259259
public void errorDuplicateValueMapping() {
260260
final DataException ex = assertThrows(DataException.class,
261-
() -> k2v.configure(Map.of("key.fields", "a,a", "value.fields", "x,x")));
261+
() -> k2v.configure(Map.of("key.fields", "a,a", "value.fields", "x,x")));
262262
assertEquals("More than one key value is copied to the value field name 'x'", ex.getMessage());
263263

264264
final DataException ex2 = assertThrows(DataException.class,
265-
() -> k2v.configure(Map.of("key.fields", "*,*,*,*", "value.fields", "a,b")));
265+
() -> k2v.configure(Map.of("key.fields", "*,*,*,*", "value.fields", "a,b")));
266266
assertEquals("More than one key value is copied to the value field name '_key'", ex2.getMessage());
267267
}
268268
}

0 commit comments

Comments
 (0)