From c5826ad3e8ad558013724632b84df2203d1b1f1c Mon Sep 17 00:00:00 2001 From: Vince Buffalo Date: Sat, 19 Aug 2023 21:31:13 -0700 Subject: [PATCH] deleted undeeded mut --- src/lib/api/figshare.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/api/figshare.rs b/src/lib/api/figshare.rs index 3627bf0..cd6af3e 100644 --- a/src/lib/api/figshare.rs +++ b/src/lib/api/figshare.rs @@ -529,7 +529,7 @@ mod tests { }); // Define a sample title for the article - let mut api = FigShareAPI::new("Test Article", Some(server.url(""))).unwrap(); + let api = FigShareAPI::new("Test Article", Some(server.url(""))).unwrap(); info!("auth_keys: {:?}", api.token); // Call the create_article method