--
You received this message because you are subscribed to the Google Groups "REST assured" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rest-assured...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
given().header("Accept", "application/xml").get("/Bundle1").then()
.log().all().assertThat().statusCode(200)
.body(equalTo(ot.getMsgBodyfromJson(xmloutputpath)))
Is there any way to exclude the timestamp before using equalTo? Like the method equalToExceptTimestamp?--
--