We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2a6c10 commit 3a4a0cdCopy full SHA for 3a4a0cd
lychee-bin/src/parse.rs
@@ -57,7 +57,10 @@ mod tests {
57
58
let mut custom_with_equals = HeaderMap::new();
59
custom_with_equals.insert("Authorization", "Bearer abc=def".parse().unwrap());
60
- assert_eq!(parse_headers(&["Authorization=Bearer abc=def"]).unwrap(), custom_with_equals);
+ assert_eq!(
61
+ parse_headers(&["Authorization=***"]).unwrap(),
62
+ custom_with_equals
63
+ );
64
}
65
66
#[test]
0 commit comments