Skip to content

Commit 1442d64

Browse files
author
Ridwan Abdilahi
committed
Fix lint errors
1 parent daf8f3b commit 1442d64

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

url/tests/debugger_visualizer.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ fn test_url_visualizer() {
8181

8282
let url_with_user_pass_port_query_fragments =
8383
Url::parse("http://user:pass@foo:21/bar;par?b#c").unwrap();
84-
assert_eq!(url_with_user_pass_port_query_fragments.as_str(), "http://user:pass@foo:21/bar;par?b#c");
84+
assert_eq!(
85+
url_with_user_pass_port_query_fragments.as_str(),
86+
"http://user:pass@foo:21/bar;par?b#c"
87+
);
8588

8689
let url_blob = Url::parse("blob:https://example.com:443/").unwrap();
8790
assert_eq!(url_blob.as_str(), "blob:https://example.com:443/");

0 commit comments

Comments
 (0)