diff options
author | Cyborus <cyborus@cyborus.xyz> | 2024-07-14 17:55:28 +0200 |
---|---|---|
committer | Cyborus <cyborus@cyborus.xyz> | 2024-07-30 18:00:42 +0200 |
commit | dd8f3da3576acca599a86b58630521eb59e18c3d (patch) | |
tree | bf1ab19b90d9040f5a6adadbd4ae2267e889e12f | |
parent | fix: only wrap return values in `Option` once (diff) | |
download | forgejo-api-dd8f3da3576acca599a86b58630521eb59e18c3d.tar.xz forgejo-api-dd8f3da3576acca599a86b58630521eb59e18c3d.zip |
fix(tests): add `hide_archive_links` to `CreateReleaseOption`
-rw-r--r-- | tests/repo.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/repo.rs b/tests/repo.rs index c9d6894..f75c1c5 100644 --- a/tests/repo.rs +++ b/tests/repo.rs @@ -232,6 +232,7 @@ async fn release() { prerelease: Some(false), tag_name: "v1.0".into(), target_commitish: None, + hide_archive_links: None, }; let release = api .repo_create_release("TestingAdmin", "release-test", release_opt) @@ -244,6 +245,7 @@ async fn release() { prerelease: None, tag_name: None, target_commitish: None, + hide_archive_links: None, }; api.repo_edit_release( "TestingAdmin", |