summaryrefslogtreecommitdiff
path: root/tests/authorization/cedar_authorizer_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/authorization/cedar_authorizer_test.rs')
-rw-r--r--tests/authorization/cedar_authorizer_test.rs8
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
+ );
}
}
}