Skip to content

Commit a121270

Browse files
authored
Fix typos in test method names of FailSafeClusterInvokerTest (#15578)
1 parent 6571e82 commit a121270

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

dubbo-cluster/src/test/java/org/apache/dubbo/rpc/cluster/support/FailSafeClusterInvokerTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,15 @@ private void resetInvokerToNoException() {
8282

8383
// TODO assert error log
8484
@Test
85-
void testInvokeExceptoin() {
85+
void testInvokeException() {
8686
resetInvokerToException();
8787
FailsafeClusterInvoker<DemoService> invoker = new FailsafeClusterInvoker<DemoService>(dic);
8888
invoker.invoke(invocation);
8989
Assertions.assertNull(RpcContext.getServiceContext().getInvoker());
9090
}
9191

9292
@Test
93-
void testInvokeNoExceptoin() {
94-
93+
void testInvokeNoException() {
9594
resetInvokerToNoException();
9695

9796
FailsafeClusterInvoker<DemoService> invoker = new FailsafeClusterInvoker<DemoService>(dic);

0 commit comments

Comments
 (0)