Skip to content
Snippets Groups Projects
Commit 1d800e89 authored by Nikhil Patil's avatar Nikhil Patil
Browse files

auth test cases fix

parent 864a221b
No related branches found
No related tags found
1 merge request!843auth test cases fix
......@@ -67,7 +67,7 @@ public class TestRecordAccessAuthorization extends RecordAccessAuthorizationTest
JsonObject json = JsonParser.parseString(EntityUtils.toString(response.getEntity())).getAsJsonObject();
assertEquals(403, json.get("code").getAsInt());
assertEquals("Access denied", json.get("reason").getAsString());
assertEquals("The user is not authorized to perform this action", json.get("message").getAsString());
assertEquals("Invalid data partition id", json.get("message").getAsString());
}
@Test
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment