summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorCyborus <cyborus@cyborus.xyz>2023-12-12 19:12:09 +0100
committerCyborus <cyborus@cyborus.xyz>2023-12-12 19:12:09 +0100
commita9f816cfbce5e2c798aa4ef4cf79a800d1e740a9 (patch)
treed529a4178ad72792ee30e4d90cd38d528937e9ee /tests
parentformat (diff)
downloadforgejo-api-a9f816cfbce5e2c798aa4ef4cf79a800d1e740a9.tar.xz
forgejo-api-a9f816cfbce5e2c798aa4ef4cf79a800d1e740a9.zip
label admin test correctly
Diffstat (limited to 'tests')
-rw-r--r--tests/ci_test.rs2
1 files changed, 1 insertions, 1 deletions
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) {