Add new option download-multiple-posts and max-download-post-tasks

This commit is contained in:
2022-07-17 06:00:12 +00:00
committed by GitHub
parent d6be8107ee
commit b8fac850c9
7 changed files with 184 additions and 50 deletions

View File

@@ -149,7 +149,7 @@ pub fn fanbox_api_test(item: TokenStream) -> TokenStream {
panic!("Failed to initiailze the client.");
}
if !client.check_login().await {
println!("The client is not logined. Skip test.");
println!("The client is not logged in. Skip test.");
return;
}
#(#stmts)*
@@ -197,7 +197,7 @@ pub fn fanbox_api_quick_test(item: TokenStream) -> TokenStream {
panic!("Failed to initiailze the client.");
}
if !client.check_login().await {
println!("The client is not logined. Skip test.");
println!("The client is not logged in. Skip test.");
return;
}
match #expr.await {