From a9f816cfbce5e2c798aa4ef4cf79a800d1e740a9 Mon Sep 17 00:00:00 2001 From: Cyborus Date: Tue, 12 Dec 2023 13:12:09 -0500 Subject: [PATCH] label admin test correctly --- tests/ci_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci_test.rs b/tests/ci_test.rs index e059799..e49c72e 100644 --- a/tests/ci_test.rs +++ b/tests/ci_test.rs @@ -11,7 +11,7 @@ async fn ci() -> eyre::Result<()> { results.push(user(&api).await.wrap_err("user 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; for report in results.into_iter().filter_map(Result::err) {