Skip to content

Commit

Permalink
fix code format problem
Browse files Browse the repository at this point in the history
  • Loading branch information
luchunliang committed Sep 5, 2024
1 parent 19ae7ed commit 6a631b9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,8 @@ public void testKv2KvForErrorOrder() throws Exception {
.create(config, SourceDecoderFactory.createKvDecoder(kvSource),
SinkEncoderFactory.createKvEncoder(kvSink));

List<String> output1 = processor1.transform("key1=string11&key2=string12&key3=number11&key4=number12", new HashMap<>());
List<String> output1 =
processor1.transform("key1=string11&key2=string12&key3=number11&key4=number12", new HashMap<>());
Assert.assertEquals(1, output1.size());
Assert.assertEquals("field1=string11&field2=&field3=number12", output1.get(0));
}
Expand Down

0 comments on commit 6a631b9

Please sign in to comment.