Skip to content

Commit

Permalink
Update the test to make it clear to customer
Browse files Browse the repository at this point in the history
  • Loading branch information
yao-gu committed Jun 3, 2023
1 parent dc6f209 commit e0626f6
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -244,8 +244,8 @@ public void testConfigureHttpConnection() throws Exception {
InputStream inputStream = createNiceMock(InputStream.class);

Map<String, Object> configs = new HashMap<>();
configs.put("http.connect.timeout.ms", "10");
configs.put("http.read.timeout.ms", "10");
configs.put("http.connect.timeout.ms", 10);
configs.put("http.read.timeout.ms", 10);
restService.configure(configs);

expect(url.openConnection()).andReturn(httpURLConnection);
Expand Down

0 comments on commit e0626f6

Please sign in to comment.