Skip to content

Commit e67568d

Browse files
committed
Whitespace
1 parent 8eca5c2 commit e67568d

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

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

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ public void testKeepFields() throws Exception {
8181

8282
Processor processor = new RemoveProcessor(null, null, List.of(), templates("name", "address.street"), false);
8383
processor.execute(document);
84+
8485
assertTrue(document.hasField("name"));
8586
assertTrue(document.hasField("address"));
8687
assertTrue(document.hasField("address.street"));
@@ -104,21 +105,13 @@ public void testShouldKeep(String a, String b) {
104105
IngestDocument document = RandomDocumentPicks.randomIngestDocument(random(), source);
105106

106107
assertTrue(shouldKeep("name", templates("name"), document));
107-
108108
assertTrue(shouldKeep("age", templates("age"), document));
109-
110109
assertFalse(shouldKeep("name", templates("age"), document));
111-
112110
assertTrue(shouldKeep("address", templates("address.street"), document));
113-
114111
assertTrue(shouldKeep("address", templates("address.number"), document));
115-
116112
assertTrue(shouldKeep("address.street", templates("address"), document));
117-
118113
assertTrue(shouldKeep("address.number", templates("address"), document));
119-
120114
assertTrue(shouldKeep("address", templates("address"), document));
121-
122115
assertFalse(shouldKeep("address.street", templates("address.number"), document));
123116
}
124117

0 commit comments

Comments
 (0)