Skip to content

Commit

Permalink
Fix flaky test in HttpUtilsTest
Browse files Browse the repository at this point in the history
  • Loading branch information
balasukesh committed Oct 7, 2023
1 parent cf854b3 commit 4e686dc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import java.nio.file.Path;
import java.nio.file.SimpleFileVisitor;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;

public class HttpUtilsTest {
Expand Down Expand Up @@ -169,7 +169,7 @@ public void testRestApiPostTimeout() {

@Test
public void buildUrl() {
Map<String, String> map = new HashMap<>();
Map<String, String> map = new LinkedHashMap<>();
map.put(password, passwordValue);
map.put(username, usernameValue);
String s = HttpUtil.buildUrl(url + PORT, map);
Expand Down

0 comments on commit 4e686dc

Please sign in to comment.