fix test failure

This commit is contained in:
Scott Lamb 2022-03-11 11:59:20 -08:00
parent 7467b382dc
commit 5264e9848e

View File

@ -661,7 +661,7 @@ mod tests {
allow_unauthenticated_permissions, allow_unauthenticated_permissions,
trust_forward_hdrs: true, trust_forward_hdrs: true,
time_zone_name: "".to_owned(), time_zone_name: "".to_owned(),
privileged_unix_uid: nix::unistd::Uid::from_raw(!0), privileged_unix_uid: None,
}) })
.unwrap(), .unwrap(),
); );
@ -772,7 +772,7 @@ mod bench {
allow_unauthenticated_permissions: Some(db::Permissions::default()), allow_unauthenticated_permissions: Some(db::Permissions::default()),
trust_forward_hdrs: false, trust_forward_hdrs: false,
time_zone_name: "".to_owned(), time_zone_name: "".to_owned(),
privileged_unix_uid: nix::unistd::Uid::from_raw(!0), privileged_unix_uid: None,
}) })
.unwrap(), .unwrap(),
); );