summaryrefslogtreecommitdiff
path: root/tests/authorization/check_service_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/authorization/check_service_test.rs')
-rw-r--r--tests/authorization/check_service_test.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/authorization/check_service_test.rs b/tests/authorization/check_service_test.rs
index 60cbc11c..ae8c1de5 100644
--- a/tests/authorization/check_service_test.rs
+++ b/tests/authorization/check_service_test.rs
@@ -8,7 +8,9 @@ mod tests {
use std::sync::Arc;
fn subject() -> CheckService {
- CheckService::new(Arc::new(build_cedar_authorizer()))
+ CheckService::new(Arc::new(build_cedar_authorizer(
+ cedar_policy::Entities::empty(),
+ )))
}
#[tokio::test]