Fix spelling error in constant name

This commit is contained in:
Oleg Zhurakousky
2021-02-22 14:11:27 +01:00
parent 3821e5745c
commit 71c0d6d71e
2 changed files with 4 additions and 4 deletions

View File

@@ -190,7 +190,7 @@ public class RSocketAutoConfigurationRoutingTests {
assertThat(msg.getHeaders()
.get(DestinationPatternsMessageCondition.LOOKUP_DESTINATION_HEADER)).toString().equals("uppercase");
assertThat(msg.getHeaders()
.get(FunctionRSocketMessageHandler.RECONSILED_LOOKUP_DESTINATION_HEADER)).toString().equals(RoutingFunction.FUNCTION_NAME);
.get(FunctionRSocketMessageHandler.RECONCILED_LOOKUP_DESTINATION_HEADER)).toString().equals(RoutingFunction.FUNCTION_NAME);
return msg.getPayload().toUpperCase();
};
}