Skip to content

Commit

Permalink
[Agent] fix jedis testcase failed
Browse files Browse the repository at this point in the history
  • Loading branch information
ascrutae committed Dec 14, 2017
1 parent 599c852 commit 25dda07
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -16,10 +16,9 @@
*
*/


package org.apache.skywalking.apm.plugin.jedis.v2;

import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.Set;
import org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.EnhancedInstance;
import org.junit.After;
Expand All @@ -45,7 +44,7 @@ public class JedisClusterConstructorWithListHostAndPortArgInterceptorTest {

@Before
public void setUp() throws Exception {
hostAndPortSet = new HashSet<HostAndPort>();
hostAndPortSet = new LinkedHashSet<HostAndPort>();
interceptor = new JedisClusterConstructorWithListHostAndPortArgInterceptor();
hostAndPortSet.add(new HostAndPort("127.0.0.1", 6379));
hostAndPortSet.add(new HostAndPort("127.0.0.1", 16379));
Expand Down

0 comments on commit 25dda07

Please sign in to comment.