This is an automated email from the ASF dual-hosted git repository.

carryxyh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new bc6a06c  Fix UT failed on windows with FileNetworkerTest (#2848)
bc6a06c is described below

commit bc6a06c73ae60be7848c0149e8c31cd901d4a676
Author: water-coder <39028621+water-co...@users.noreply.github.com>
AuthorDate: Thu Nov 29 15:51:12 2018 +0800

    Fix UT failed on windows with FileNetworkerTest (#2848)
    
    Fix FileNetworkerTest failure
---
 .../java/org/apache/dubbo/remoting/p2p/support/FileNetworkerTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dubbo-remoting/dubbo-remoting-p2p/src/test/java/org/apache/dubbo/remoting/p2p/support/FileNetworkerTest.java
 
b/dubbo-remoting/dubbo-remoting-p2p/src/test/java/org/apache/dubbo/remoting/p2p/support/FileNetworkerTest.java
index 980718e..621e3c4 100644
--- 
a/dubbo-remoting/dubbo-remoting-p2p/src/test/java/org/apache/dubbo/remoting/p2p/support/FileNetworkerTest.java
+++ 
b/dubbo-remoting/dubbo-remoting-p2p/src/test/java/org/apache/dubbo/remoting/p2p/support/FileNetworkerTest.java
@@ -51,7 +51,7 @@ public class FileNetworkerTest {
 
     @Test
     public void testJoin() throws RemotingException, InterruptedException, 
IOException {
-        final String groupURL = "file://" + folder.newFile();
+        final String groupURL = "file:///" + folder.newFile();
 
         FileNetworker networker = new FileNetworker();
         Group group = networker.lookup(URL.valueOf(groupURL));

Reply via email to