remove println

This commit is contained in:
bitfl0wer 2023-05-09 17:19:04 +02:00
parent 0ba2f568fd
commit d8c8cd079b
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
5 changed files with 0 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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

View File

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