remove println

This commit is contained in:
bitfl0wer 2023-05-09 17:19:04 +02:00
parent a7514a28c6
commit aaf454ffa7
5 changed files with 0 additions and 5 deletions

View File

@ -116,6 +116,5 @@ mod test {
.login_account(&login_schema.unwrap()) .login_account(&login_schema.unwrap())
.await .await
.unwrap(); .unwrap();
println!("{:?}", login_result);
} }
}*/ }*/

View File

@ -125,6 +125,5 @@ mod test {
.send_message(&mut message, &channel_id, None) .send_message(&mut message, &channel_id, None)
.await .await
.unwrap(); .unwrap();
println!("{:?}", response);
} }
} }

View File

@ -52,6 +52,5 @@ mod instance_policies_schema_test {
.unwrap(); .unwrap();
let schema = test_instance.instance_policies_schema().await.unwrap(); let schema = test_instance.instance_policies_schema().await.unwrap();
println!("{:?}", schema);
} }
} }

View File

@ -30,7 +30,6 @@ impl URLBundle {
/// # Example: /// # Example:
/// ```rs /// ```rs
/// let url = parse_url("localhost:3000"); /// let url = parse_url("localhost:3000");
/// println!("{}", url);
/// ``` /// ```
/// `-> Outputs "http://localhost:3000".` /// `-> Outputs "http://localhost:3000".`
pub fn parse_url(url: String) -> String { pub fn parse_url(url: String) -> String {

View File

@ -330,6 +330,5 @@ mod rate_limit {
Err(_) => panic!("Request failed"), Err(_) => panic!("Request failed"),
}; };
let config: Config = from_str(result.text().await.unwrap().as_str()).unwrap(); let config: Config = from_str(result.text().await.unwrap().as_str()).unwrap();
println!("{:?}", config);
} }
} }