Fix clippy findings

This commit is contained in:
Simon Goller 2024-06-06 08:08:30 +02:00
parent 99b9d85e47
commit 91559224e5
4 changed files with 22 additions and 13 deletions

View file

@ -54,7 +54,11 @@ async fn test_user_service_dev() {
let user_service = UserServiceDev;
assert_eq!(
"DEVUSER",
user_service.current_user(()).await.unwrap().as_ref()
user_service
.current_user(MockContext)
.await
.unwrap()
.as_ref()
);
}