Skip to content

Commit

Permalink
#10245, #10266: Fix for HTMLPageAPITest
Browse files Browse the repository at this point in the history
  • Loading branch information
agomez-dotcms committed Dec 5, 2016
2 parents 77ca18a + 16ff63c commit 5f44dcc
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -253,9 +253,11 @@ public void move() throws Exception {
// create new roles
RoleAPI roleAPI = APILocator.getRoleAPI();

long time = System.currentTimeMillis();

role = new Role();
role.setName("testRole1");
role.setRoleKey("testKey1");
role.setName("testRole1"+time);
role.setRoleKey("testKey1"+time);
role.setEditUsers(true);
role.setEditPermissions(true);
role.setEditLayouts(true);
Expand Down

0 comments on commit 5f44dcc

Please sign in to comment.