NIFI-10631 Changed HashMap to LinkedHashMap in TestHBase_2_ClientService

- Adjustment avoids non-deterministic warnings related to HashMap ordering

This closes #6516

Signed-off-by: David Handermann <exceptionfactory@apache.org>
This commit is contained in:
yiteng3 2022-10-11 22:51:37 -05:00 committed by exceptionfactory
parent 531a9de28f
commit a5d93d96a3
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_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");