fix(codegen): fixed codegen for array path parameters

This commit is contained in:
Pyrite 2025-05-22 19:47:10 +02:00
parent f48f95a4a5
commit 4979e5c590
Signed by: pyrite
GPG key ID: 7F1BA9170CD35D15
8 changed files with 6393 additions and 6334 deletions

View file

@ -415,7 +415,7 @@ pub(super) mod test {
let forum_scope = ForumScope(&client);
forum_scope
.threads_for_category_ids("2".to_owned(), |b| b)
.threads_for_category_ids([2.into()].into(), |b| b)
.await
.unwrap();
}
@ -640,7 +640,7 @@ pub(super) mod test {
let torn_scope = TornScope(&client);
torn_scope
.items_for_ids("1".to_owned(), |b| b)
.items_for_ids([1.into()].into(), |b| b)
.await
.unwrap();
}