We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc76a18 commit 94c8fb1Copy full SHA for 94c8fb1
src/decoders/encoded_word.rs
@@ -164,10 +164,9 @@ mod tests {
164
] {
165
match MessageStream::new(input.as_bytes()).decode_rfc2047() {
166
Some(result) => {
167
- //println!("Decoded '{}'", string);
168
assert_eq!(result, expected_result);
169
}
170
- _ => panic!("Failed to decode '{}'", input),
+ _ => panic!("Failed to decode '{input}'"),
171
172
173
src/parsers/fields/raw.rs
@@ -79,8 +79,7 @@ mod tests {
79
.parse_raw()
80
.unwrap_text(),
81
expected,
82
- "Failed for '{:?}'",
83
- input
+ "Failed for '{input:?}'",
84
);
85
86
0 commit comments