aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/tests/util/http
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/tests/util/http')
-rw-r--r--crates/shirabe/tests/util/http/proxy_item_test.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/shirabe/tests/util/http/proxy_item_test.rs b/crates/shirabe/tests/util/http/proxy_item_test.rs
index 4843945..0607bd5 100644
--- a/crates/shirabe/tests/util/http/proxy_item_test.rs
+++ b/crates/shirabe/tests/util/http/proxy_item_test.rs
@@ -56,6 +56,9 @@ fn data_formatting() -> Vec<(&'static str, &'static str)> {
// 'removes-user'
("http://user@proxy.com:6180", "http://***@proxy.com:6180"),
// 'removes-user-pass'
- ("http://user:p%40ss@proxy.com:6180", "http://***:***@proxy.com:6180"),
+ (
+ "http://user:p%40ss@proxy.com:6180",
+ "http://***:***@proxy.com:6180",
+ ),
]
}