We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb378e commit 83aeb2aCopy full SHA for 83aeb2a
client/src/test/java/io/split/client/RequestDecoratorTest.java
@@ -13,7 +13,6 @@
13
14
import java.util.List;
15
import java.util.Arrays;
16
-import java.util.ArrayList;
17
import java.util.HashMap;
18
import java.util.Map;
19
@@ -38,9 +37,9 @@ public MyCustomHeaders() {}
38
37
public Map<String, List<String>> getHeaderOverrides() {
39
return new HashMap<String, List<String>>()
40
{{
41
- put("first", List.of("1"));
42
- put("second", List.of("2.1", "2.2"));
43
- put("third", List.of("3"));
+ put("first", Arrays.asList("1"));
+ put("second", Arrays.asList("2.1", "2.2"));
+ put("third", Arrays.asList("3"));
44
}};
45
}
46
0 commit comments