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

crazyhzm pushed a commit to branch 3.2
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/3.2 by this push:
     new 58bf28f8c0 Fix typo in ArgumentCallbackTest (#13233)
58bf28f8c0 is described below

commit 58bf28f8c0a6d7b042af49cad033a7a18231698b
Author: xiaolou86 <[email protected]>
AuthorDate: Thu Oct 19 15:27:26 2023 +0800

    Fix typo in ArgumentCallbackTest (#13233)
---
 .../dubbo/rpc/protocol/dubbo/ArgumentCallbackTest.java       | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/dubbo-rpc/dubbo-rpc-dubbo/src/test/java/org/apache/dubbo/rpc/protocol/dubbo/ArgumentCallbackTest.java
 
b/dubbo-rpc/dubbo-rpc-dubbo/src/test/java/org/apache/dubbo/rpc/protocol/dubbo/ArgumentCallbackTest.java
index e245754694..7d5123f4c7 100644
--- 
a/dubbo-rpc/dubbo-rpc-dubbo/src/test/java/org/apache/dubbo/rpc/protocol/dubbo/ArgumentCallbackTest.java
+++ 
b/dubbo-rpc/dubbo-rpc-dubbo/src/test/java/org/apache/dubbo/rpc/protocol/dubbo/ArgumentCallbackTest.java
@@ -123,7 +123,7 @@ class ArgumentCallbackTest {
 
         demoProxy.xxx(new IDemoCallback() {
             public String yyy(String msg) {
-                System.out.println("Recived callback: " + msg);
+                System.out.println("Received callback: " + msg);
                 count.incrementAndGet();
                 return "ok";
             }
@@ -143,7 +143,7 @@ class ArgumentCallbackTest {
 
         demoProxy.xxx(new IDemoCallback() {
             public String yyy(String msg) {
-                System.out.println("Recived callback: " + msg);
+                System.out.println("Received callback: " + msg);
                 count.incrementAndGet();
                 return "ok";
             }
@@ -215,7 +215,7 @@ class ArgumentCallbackTest {
             final AtomicInteger count = new AtomicInteger(0);
             demoProxy.xxx(new IDemoCallback() {
                 public String yyy(String msg) {
-                    System.out.println("Recived callback: " + msg);
+                    System.out.println("Received callback: " + msg);
                     count.incrementAndGet();
                     return "ok";
                 }
@@ -223,7 +223,7 @@ class ArgumentCallbackTest {
 
             demoProxy.xxx(new IDemoCallback() {
                 public String yyy(String msg) {
-                    System.out.println("Recived callback: " + msg);
+                    System.out.println("Received callback: " + msg);
                     count.incrementAndGet();
                     return "ok";
                 }
@@ -243,7 +243,7 @@ class ArgumentCallbackTest {
             final AtomicInteger count = new AtomicInteger(0);
             demoProxy.xxx(new IDemoCallback() {
                 public String yyy(String msg) {
-                    System.out.println("Recived callback: " + msg);
+                    System.out.println("Received callback: " + msg);
                     count.incrementAndGet();
                     return "ok";
                 }
@@ -251,7 +251,7 @@ class ArgumentCallbackTest {
 
             demoProxy.xxx(new IDemoCallback() {
                 public String yyy(String msg) {
-                    System.out.println("Recived callback: " + msg);
+                    System.out.println("Received callback: " + msg);
                     count.incrementAndGet();
                     return "ok";
                 }

Reply via email to