Fix clippy warning redundant_guards

This commit is contained in:
gwenn 2023-10-11 18:49:27 +02:00
parent c1eea9be00
commit 845761e498

View File

@ -776,9 +776,10 @@ mod test {
.unwrap(); .unwrap();
let authorizer = move |ctx: AuthContext<'_>| match ctx.action { let authorizer = move |ctx: AuthContext<'_>| match ctx.action {
AuthAction::Read { column_name, .. } if column_name == "private" => { AuthAction::Read {
Authorization::Ignore column_name: "private",
} ..
} => Authorization::Ignore,
AuthAction::DropTable { .. } => Authorization::Deny, AuthAction::DropTable { .. } => Authorization::Deny,
AuthAction::Pragma { .. } => panic!("shouldn't be called"), AuthAction::Pragma { .. } => panic!("shouldn't be called"),
_ => Authorization::Allow, _ => Authorization::Allow,