Skip to content

Commit

Permalink
fix flaky test in apollo-biz
Browse files Browse the repository at this point in the history
  • Loading branch information
anantdahiya8 authored and nobodyiam committed Oct 28, 2022
1 parent d849c02 commit 3c6baa4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
import org.junit.jupiter.api.Test;
import org.springframework.core.io.ClassPathResource;
Expand Down Expand Up @@ -58,7 +59,7 @@ void convertToDatabaseColumn_oneElement() throws IOException {

@Test
void convertToDatabaseColumn_twoElement() throws IOException {
Map<String, String> map = new HashMap<>(8);
Map<String, String> map = new LinkedHashMap<>(8);
map.put("a", "1");
map.put("disableCheck", "true");

Expand Down

0 comments on commit 3c6baa4

Please sign in to comment.