style: run rustfmt

This commit is contained in:
Compositr 2024-11-05 21:10:42 +11:00
parent dfb4ae66e6
commit da33147f5f
2 changed files with 3 additions and 3 deletions

View file

@ -29,7 +29,6 @@ impl URL {
continue; continue;
} }
let value = key_value let value = key_value
.next() .next()
.unwrap_or("") .unwrap_or("")
@ -141,7 +140,8 @@ mod tests {
assert_eq!(url.query.get("query").unwrap(), "string"); assert_eq!(url.query.get("query").unwrap(), "string");
assert_eq!(url.query.get("another").unwrap(), "one"); assert_eq!(url.query.get("another").unwrap(), "one");
let url = URL::new("/path/to/resource?query=string&another=one&third=3".to_string()).unwrap(); let url =
URL::new("/path/to/resource?query=string&another=one&third=3".to_string()).unwrap();
assert_eq!(url.path, "/path/to/resource"); assert_eq!(url.path, "/path/to/resource");
assert_eq!(url.query.len(), 3); assert_eq!(url.query.len(), 3);
assert_eq!(url.query.get("query").unwrap(), "string"); assert_eq!(url.query.get("query").unwrap(), "string");

View file

@ -11,8 +11,8 @@ mod constants;
mod handlers; mod handlers;
mod http; mod http;
mod icons; mod icons;
mod threads;
mod macros; mod macros;
mod threads;
fn main() { fn main() {
println!("luciders starting..."); println!("luciders starting...");