fix assertion order

This commit is contained in:
ncheema
2022-02-03 13:33:48 -08:00
committed by Oleg Zhurakousky
parent 9bd602085b
commit ff88e5837f

View File

@@ -498,7 +498,7 @@ public class StreamBridgeTests {
Message<byte[]> message = target.receive(5, "dynamicTopic");
assertNotNull(message);
assertEquals(new String(message.getPayload()), "JOHN DOE");
assertEquals("JOHN DOE", new String(message.getPayload()));
}
@EnableAutoConfiguration