Skip to content

Commit 9e9556d

Browse files
committed
Backport #620 into 2.x
1 parent 233c4e4 commit 9e9556d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ion/src/test/java/com/fasterxml/jackson/dataformat/ion/ionvalue/IonValueDeserializerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.fasterxml.jackson.dataformat.ion.ionvalue;
22

3-
import java.util.HashMap;
3+
import java.util.LinkedHashMap;
44
import java.util.Map;
55
import java.util.Objects;
66

@@ -25,7 +25,7 @@
2525

2626
public class IonValueDeserializerTest {
2727
private static class Data<T> {
28-
private final Map<String, T> map = new HashMap<>();
28+
private final Map<String, T> map = new LinkedHashMap<>();
2929

3030
protected Data() { }
3131

0 commit comments

Comments
 (0)