We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6571e82 commit a121270Copy full SHA for a121270
1 file changed
dubbo-cluster/src/test/java/org/apache/dubbo/rpc/cluster/support/FailSafeClusterInvokerTest.java
@@ -82,16 +82,15 @@ private void resetInvokerToNoException() {
82
83
// TODO assert error log
84
@Test
85
- void testInvokeExceptoin() {
+ void testInvokeException() {
86
resetInvokerToException();
87
FailsafeClusterInvoker<DemoService> invoker = new FailsafeClusterInvoker<DemoService>(dic);
88
invoker.invoke(invocation);
89
Assertions.assertNull(RpcContext.getServiceContext().getInvoker());
90
}
91
92
93
- void testInvokeNoExceptoin() {
94
-
+ void testInvokeNoException() {
95
resetInvokerToNoException();
96
97
0 commit comments