1
0
Fork 0

label admin test correctly

This commit is contained in:
Cyborus 2023-12-12 13:12:09 -05:00
parent bd6d92f6b6
commit a9f816cfbc
No known key found for this signature in database

View file

@ -11,7 +11,7 @@ async fn ci() -> eyre::Result<()> {
results.push(user(&api).await.wrap_err("user error")); results.push(user(&api).await.wrap_err("user error"));
results.push(repo(&api).await.wrap_err("repo error")); results.push(repo(&api).await.wrap_err("repo error"));
results.push(admin(&api).await.wrap_err("repo error")); results.push(admin(&api).await.wrap_err("admin error"));
let mut errors = 0; let mut errors = 0;
for report in results.into_iter().filter_map(Result::err) { for report in results.into_iter().filter_map(Result::err) {