diff options
author | Cyborus <cyborus@cyborus.xyz> | 2023-12-12 19:45:38 +0100 |
---|---|---|
committer | Cyborus <cyborus@cyborus.xyz> | 2023-12-12 19:45:38 +0100 |
commit | 0912ffdcee4246abe9667fc5faf12a3dedb1fab5 (patch) | |
tree | 85402489d2f522f3216e4d1bc694d9cffad3fb73 /tests | |
parent | `admin_add_key` should use post (diff) | |
download | forgejo-api-0912ffdcee4246abe9667fc5faf12a3dedb1fab5.tar.xz forgejo-api-0912ffdcee4246abe9667fc5faf12a3dedb1fab5.zip |
use real dummy key
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ci_test.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ci_test.rs b/tests/ci_test.rs index b65ba03..d57f5a0 100644 --- a/tests/ci_test.rs +++ b/tests/ci_test.rs @@ -295,7 +295,7 @@ async fn admin(api: &forgejo_api::Forgejo) -> eyre::Result<()> { ); let key_opt = forgejo_api::CreateKeyOption { - key: "ssh-ed25519 00000000000000000000000000000000000000000000000000000000000000000000 user@noreply.example.org".into(), + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN68ehQAsbGEwlXPa2AxbAh1QxFQrtRel2jeC0hRlPc1 user@noreply.example.org".into(), read_only: None, title: "Example Key".into(), }; |