We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85e9a9e commit b4aa3c4Copy full SHA for b4aa3c4
scribejava-core/src/test/java/com/github/scribejava/core/utils/MapUtilsTest.java
@@ -1,5 +1,6 @@
1
package com.github.scribejava.core.utils;
2
3
+import java.util.LinkedHashMap;
4
import java.util.HashMap;
5
import java.util.Map;
6
import org.junit.Assert;
@@ -9,7 +10,7 @@ public class MapUtilsTest {
9
10
11
@Test
12
public void shouldPrettyPrintMap() {
- final Map<Integer, String> map = new HashMap<>();
13
+ final Map<Integer, String> map = new LinkedHashMap<>();
14
map.put(1, "one");
15
map.put(2, "two");
16
map.put(3, "three");
0 commit comments