fix(codegen): fixed codegen for array path parameters
This commit is contained in:
parent
e2c4f74242
commit
1deef2150d
8 changed files with 6393 additions and 6334 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue