Skip to content

Commit d88a40a

Browse files
committed
Whitespace
1 parent ab8f313 commit d88a40a

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
@@ -127,6 +127,7 @@ public void testKeepFields() throws Exception {
127127

128128
Processor processor = new RemoveProcessor(null, null, List.of(), templates("name", "address.street"), false);
129129
processor.execute(document);
130+
130131
assertTrue(document.hasField("name"));
131132
assertTrue(document.hasField("address"));
132133
assertTrue(document.hasField("address.street"));
@@ -150,21 +151,13 @@ public void testShouldKeep(String a, String b) {
150151
IngestDocument document = RandomDocumentPicks.randomIngestDocument(random(), source);
151152

152153
assertTrue(shouldKeep("name", templates("name"), document));
153-
154154
assertTrue(shouldKeep("age", templates("age"), document));
155-
156155
assertFalse(shouldKeep("name", templates("age"), document));
157-
158156
assertTrue(shouldKeep("address", templates("address.street"), document));
159-
160157
assertTrue(shouldKeep("address", templates("address.number"), document));
161-
162158
assertTrue(shouldKeep("address.street", templates("address"), document));
163-
164159
assertTrue(shouldKeep("address.number", templates("address"), document));
165-
166160
assertTrue(shouldKeep("address", templates("address"), document));
167-
168161
assertFalse(shouldKeep("address.street", templates("address.number"), document));
169162
}
170163

0 commit comments

Comments
 (0)