forgejo-hooks: Rename issue-new test to issue-opened

Signed-off-by: pep <pep@bouah.net>
This commit is contained in:
pep 2024-09-04 22:48:44 +02:00
parent 0ec50d7d74
commit 6e7462f54d
2 changed files with 2 additions and 2 deletions

View file

@ -54,8 +54,8 @@ fn push_payload() {
}
#[test]
fn issue_new() {
let payload = std::fs::read_to_string("src/tests/issue-new.json").unwrap();
fn issue_opened() {
let payload = std::fs::read_to_string("src/tests/issue-opened.json").unwrap();
let _ = parse_roundtrip::<Issue>(&payload);
}