NIFI-10743 Used LinkedHashMap in TestHBase_1_1_2_ClientService.testScan

This closes #6632

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
sopan98 2022-11-01 17:47:27 -05:00 committed by exceptionfactory
parent 747b5d4d9e
commit ce18b63db0
No known key found for this signature in database
GPG Key ID: 29B6A52D2AAE8DBA
1 changed files with 1 additions and 2 deletions

View File

@ -43,7 +43,6 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
@ -407,7 +406,7 @@ public class TestHBase_1_1_2_ClientService {
// stage some results in the mock service...
final long now = System.currentTimeMillis();
final Map<String, String> cells = new HashMap<>();
final Map<String, String> cells = new LinkedHashMap<>();
cells.put("greeting", "hello");
cells.put("name", "nifi");