Skip to content

Commit 3a4a0cd

Browse files
committed
Fix formatting
1 parent a2a6c10 commit 3a4a0cd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lychee-bin/src/parse.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ mod tests {
5757

5858
let mut custom_with_equals = HeaderMap::new();
5959
custom_with_equals.insert("Authorization", "Bearer abc=def".parse().unwrap());
60-
assert_eq!(parse_headers(&["Authorization=Bearer abc=def"]).unwrap(), custom_with_equals);
60+
assert_eq!(
61+
parse_headers(&["Authorization=***"]).unwrap(),
62+
custom_with_equals
63+
);
6164
}
6265

6366
#[test]

0 commit comments

Comments
 (0)