diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-09 09:45:31 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-09 09:45:31 -0600 |
| commit | 3d7745e618dfd824afb83d860abcc8af90b0bd14 (patch) | |
| tree | cb3887ec53825b2a93d7e708931aa8d63032dd1a /tests/authorization/check_service_test.rs | |
| parent | 203ed8abfbf47c8a41a455c1f8baf7c53b7c51cc (diff) | |
chore: start to provide entities to cedar
Diffstat (limited to 'tests/authorization/check_service_test.rs')
| -rw-r--r-- | tests/authorization/check_service_test.rs | 4 |
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] |
