Skip to content

Commit

Permalink
fix sample controller (#22679)
Browse files Browse the repository at this point in the history
  • Loading branch information
yiliuTo authored Jul 1, 2021
1 parent e83ac1b commit fa07d23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class EventHubBinderApplicationIT {
public void testSendAndReceiveMessage(CapturedOutput capturedOutput) throws Exception {
Thread.sleep(10000);
String message = UUID.randomUUID().toString();
mvc.perform(post("/messages?message=" + message)).andExpect(status().isOk())
mvc.perform(post("/messages/reactive?message=" + message)).andExpect(status().isOk())
.andExpect(content().string(message));
String messageReceivedLog = String.format("New message received: '%s'", message);
String messageCheckpointedLog = String.format("Message '%s' successfully checkpointed", message);
Expand Down

0 comments on commit fa07d23

Please sign in to comment.