Skip to content

Commit

Permalink
fix broken test (due to update to latest accumulo-access package whic…
Browse files Browse the repository at this point in the history
…h is compliant with the spec. and doesn't support whitespace in expressions).
  • Loading branch information
larsw committed Jun 10, 2024
1 parent 4897b39 commit 7eb5383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ mod tests {

#[pg_test]
fn test_accumulo_check_authorization() {
let expression = "label1 & label5 & (label2 | \"label 🕺\")";
let expression = "label1&label5&(label2|\"label 🕺\")";
let tokens = "label1,label5,label 🕺";
assert!(crate::sec_authz_check(Some(expression), Some(tokens)));
}
Expand Down

0 comments on commit 7eb5383

Please sign in to comment.