lint test

This commit is contained in:
pap
2025-07-30 22:28:02 +01:00
parent 55659e351c
commit 40cf8a819c

View File

@@ -469,10 +469,10 @@ mod tests {
} else {
String::new()
};
assert_eq!(raw, raw_expected, "raw args for '{}'", line);
assert_eq!(raw, raw_expected, "raw args for '{line}'");
// Normalize as in app dispatch logic
let normalized = strip_surrounding_quotes(&raw).trim().to_string();
assert_eq!(normalized, norm_expected, "normalized args for '{}'", line);
assert_eq!(normalized, norm_expected, "normalized args for '{line}'");
}
}
}