@@ -49,7 +49,7 @@ public void testInvokeWithDefault() throws Exception {
4949 RpcInvocation invocation = new RpcInvocation (Constants .$INVOKE , genericInvoke .getParameterTypes (),
5050 new Object []{"getPerson" , new String []{Person .class .getCanonicalName ()}, new Object []{person }});
5151
52- URL url = URL .valueOf ("test://test:11/com.alibaba .dubbo.rpc.support.DemoService?" +
52+ URL url = URL .valueOf ("test://test:11/org.apache .dubbo.rpc.support.DemoService?" +
5353 "accesslog=true&group=dubbo&version=1.1" );
5454 Invoker invoker = Mockito .mock (Invoker .class );
5555 when (invoker .invoke (any (Invocation .class ))).thenReturn (new RpcResult (new Person ("person" , 10 )));
@@ -76,7 +76,7 @@ public void testInvokeWithJavaException() throws Exception {
7676 new Object []{"getPerson" , new String []{Person .class .getCanonicalName ()}, new Object []{person }});
7777 invocation .setAttachment (Constants .GENERIC_KEY , Constants .GENERIC_SERIALIZATION_NATIVE_JAVA );
7878
79- URL url = URL .valueOf ("test://test:11/com.alibaba .dubbo.rpc.support.DemoService?" +
79+ URL url = URL .valueOf ("test://test:11/org.apache .dubbo.rpc.support.DemoService?" +
8080 "accesslog=true&group=dubbo&version=1.1" );
8181 Invoker invoker = Mockito .mock (Invoker .class );
8282 when (invoker .invoke (any (Invocation .class ))).thenReturn (new RpcResult (new Person ("person" , 10 )));
@@ -99,7 +99,7 @@ public void testInvokeWithJavaException() throws Exception {
9999 RpcInvocation invocation = new RpcInvocation ("sayHi" , genericInvoke .getParameterTypes ()
100100 , new Object []{"getPerson" , new String []{Person .class .getCanonicalName ()}, new Object []{person }});
101101
102- URL url = URL .valueOf ("test://test:11/com.alibaba .dubbo.rpc.support.DemoService?" +
102+ URL url = URL .valueOf ("test://test:11/org.apache .dubbo.rpc.support.DemoService?" +
103103 "accesslog=true&group=dubbo&version=1.1" );
104104 Invoker invoker = Mockito .mock (Invoker .class );
105105 when (invoker .invoke (any (Invocation .class ))).thenReturn (new RpcResult (new Person ("person" , 10 )));
@@ -123,7 +123,7 @@ public void testInvokeWithMethodArgumentSizeIsNot3() {
123123 RpcInvocation invocation = new RpcInvocation (Constants .$INVOKE , genericInvoke .getParameterTypes ()
124124 , new Object []{"getPerson" , new String []{Person .class .getCanonicalName ()}});
125125
126- URL url = URL .valueOf ("test://test:11/com.alibaba .dubbo.rpc.support.DemoService?" +
126+ URL url = URL .valueOf ("test://test:11/org.apache .dubbo.rpc.support.DemoService?" +
127127 "accesslog=true&group=dubbo&version=1.1" );
128128 Invoker invoker = Mockito .mock (Invoker .class );
129129 when (invoker .invoke (any (Invocation .class ))).thenReturn (new RpcResult (new Person ("person" , 10 )));
0 commit comments