Skip to content

Commit b5792aa

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent aa0ddc8 commit b5792aa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/ingest-common/src/test/java/org/elasticsearch/ingest/common/CefProcessorTests.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public void testInvalidCefFormat() {
116116
expectThrows(IllegalArgumentException.class, () -> processor.execute(invalidIngestDocument));
117117
}
118118

119-
public void testStandardMessage() throws IOException, URISyntaxException{
119+
public void testStandardMessage() throws IOException, URISyntaxException {
120120
String message = readCefMessageFile("standard_message.cef.txt");
121121
Map<String, Object> source = new HashMap<>();
122122
source.put("message", message);
@@ -147,7 +147,7 @@ public void testStandardMessage() throws IOException, URISyntaxException{
147147
);
148148
}
149149

150-
public void testHeaderOnly() throws IOException, URISyntaxException{
150+
public void testHeaderOnly() throws IOException, URISyntaxException {
151151
String message = readCefMessageFile("header_only.cef.txt");
152152
Map<String, Object> source = new HashMap<>();
153153
source.put("message", message);
@@ -176,7 +176,7 @@ public void testHeaderOnly() throws IOException, URISyntaxException{
176176
);
177177
}
178178

179-
public void testEmptyDeviceFields() throws IOException, URISyntaxException{
179+
public void testEmptyDeviceFields() throws IOException, URISyntaxException {
180180
String message = readCefMessageFile("empty_device_fields.cef.txt");
181181
Map<String, Object> source = new HashMap<>();
182182
source.put("message", message);
@@ -204,7 +204,7 @@ public void testEmptyDeviceFields() throws IOException, URISyntaxException{
204204
);
205205
}
206206

207-
public void testEscapedPipeInHeader() throws IOException, URISyntaxException{
207+
public void testEscapedPipeInHeader() throws IOException, URISyntaxException {
208208
String message = readCefMessageFile("escaped_pipe_in_header.cef.txt");
209209
Map<String, Object> source = new HashMap<>();
210210
source.put("message", message);

0 commit comments

Comments
 (0)