diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-10 14:29:45 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-10 14:31:01 -0600 |
| commit | 04670ecf10906f90cd50c7ff5d6cdc3e6f1f777e (patch) | |
| tree | 4277d009f520d4f1da075d8332b32aa74764a482 /tests/authorization/cedar_authorizer_test.rs | |
| parent | 501fbdd53312a2a449891386a7982f324ccfe23a (diff) | |
test: print failure details for table test
Diffstat (limited to 'tests/authorization/cedar_authorizer_test.rs')
| -rw-r--r-- | tests/authorization/cedar_authorizer_test.rs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/authorization/cedar_authorizer_test.rs b/tests/authorization/cedar_authorizer_test.rs index 0cffeb13..1a04b6af 100644 --- a/tests/authorization/cedar_authorizer_test.rs +++ b/tests/authorization/cedar_authorizer_test.rs @@ -58,7 +58,13 @@ mod tests { ]); }); - assert_eq!(authorizer.authorize(request), *expected); + assert_eq!( + authorizer.authorize(request), + *expected, + "{} {}", + method, + path + ); } } } |
