//tries to recreate the same role, now with description
requestCreation = new FakeRequest(POST, sFakeRole);
requestCreation = requestCreation.withHeader(TestConfig.KEY_APPCODE, TestConfig.VALUE_APPCODE);
requestCreation = requestCreation.withHeader(TestConfig.KEY_AUTH, TestConfig.AUTH_ADMIN_ENC);
mapper = new ObjectMapper();
actualObj = mapper.readTree("{\"description\":\"this is a test\"}");
requestCreation = requestCreation.withJsonBody(actualObj);
requestCreation = requestCreation.withHeader("Content-Type", "application/json");
result = route(requestCreation);
assertRoute(result, "testRoleCreate.create_the_same", Status.CREATED, null, true);