Skip to content

Commit

Permalink
chore(test): remove unnecessary print lines
Browse files Browse the repository at this point in the history
  • Loading branch information
yanavasileva committed Feb 27, 2019
1 parent 16ce4a3 commit 8aa6079
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3348,7 +3348,6 @@ public void testGetVariablesWithoutAuthorization() {
} catch (AuthorizationException e) {
// then (2)
String message = e.getMessage();
System.out.println(message);
assertTextPresent(userId, message);
assertTextPresent(READ.getName(), message);
assertTextPresent(processInstanceId, message);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,6 @@ public void testDisabledTenantCheck() throws Exception {
engineRule.getProcessEngineConfiguration().setTenantCheckEnabled(false);
identityService.setAuthentication("user", null, null);

System.out.println(engineRule.getProcessEngineConfiguration().isAuthorizationEnabled());

Map<String, Object> variableMap = new HashMap<String, Object>();
variableMap.put("foo", "bar");

Expand Down

0 comments on commit 8aa6079

Please sign in to comment.