refactor: move AppContext to presentation crate, structurally enforce boundary
All checks were successful
CI / Check / Test (push) Successful in 39m33s
All checks were successful
CI / Check / Test (push) Successful in 39m33s
This commit is contained in:
@@ -8,7 +8,9 @@ async fn returns_empty_when_no_users() {
|
||||
let user = b.user_repo.clone();
|
||||
let social_query = b.social_query.clone();
|
||||
|
||||
let result = get_users::execute(user, social_query, GetUsersQuery).await.unwrap();
|
||||
let result = get_users::execute(user, social_query, GetUsersQuery)
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
assert!(result.users.is_empty());
|
||||
assert!(result.remote_actors.is_empty());
|
||||
|
||||
Reference in New Issue
Block a user