Skip to content

Commit

Permalink
Fix TraceFilterTest#testInvoke (apache#7876)
Browse files Browse the repository at this point in the history
  • Loading branch information
icankeep committed May 27, 2021
1 parent 252db60 commit 6e89984
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void testInvoke() throws Exception {
// test invoke
filter.invoke(mockInvoker, mockInvocation);
String message = listToString(mockChannel.getReceivedObjects());
String expectMessage = "null -> org.apache.dubbo.rpc.protocol.dubbo.support.DemoService.sayHello([]) -> \"result\"";
String expectMessage = "org.apache.dubbo.rpc.protocol.dubbo.support.DemoService.sayHello([]) -> \"result\"";
System.out.println("actual message: " + message);
Assertions.assertTrue(message.contains(expectMessage));
Assertions.assertTrue(message.contains("elapsed:"));
Expand Down

0 comments on commit 6e89984

Please sign in to comment.