openvidu-test-e2e: print json response if number of keys is wrong

pull/255/head
pabloFuente 2019-02-20 12:45:34 +01:00
parent 07aaf94d30
commit bacb37721e
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ public class CustomHttpClient {
}
if (exactReturnedFields) {
Assert.assertEquals("Error in number of keys in JSON response to POST " + path, jsonObjExpected.length(),
Assert.assertEquals("Error in number of keys in JSON response to POST (" + json.toString() + ")" + path, jsonObjExpected.length(),
json.length());
}
for (String key : jsonObjExpected.keySet()) {