Skip to content

Commit

Permalink
fix: update benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
sameerzuberi committed Jan 16, 2024
1 parent f6960dc commit 75de8ab
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ public boolean GIVEN_single_group_permission_WHEN_simple_auth_request_THEN_succe
static abstract class PolicyTestState {
final FakeSessionManager sessionManager = new FakeSessionManager();
final GroupManager groupManager = new GroupManager();
final DeviceAuthClient deviceAuthClient = new DeviceAuthClient(sessionManager, groupManager, null);
final PermissionEvaluationUtils permissionEvaluationUtils = new PermissionEvaluationUtils(groupManager);
final DeviceAuthClient deviceAuthClient = new DeviceAuthClient(sessionManager, null, permissionEvaluationUtils);
}

static class FakeSession implements Session {
Expand Down

0 comments on commit 75de8ab

Please sign in to comment.