fix(core): clippy uninlined_format_args — strip_alias 테스트 (리뷰 MAJOR-1)
workspace clippy --all-targets -D warnings 게이트 통과. format! 인자 인라인. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -442,7 +442,7 @@ mod tests {
|
||||
#[test]
|
||||
fn strip_alias_suffix_roundtrip() {
|
||||
let bare = "0123456789abcdef0123456789abcdef";
|
||||
let with_suffix = format!("{}{}", bare, ALIAS_SUFFIX);
|
||||
let with_suffix = format!("{bare}{ALIAS_SUFFIX}");
|
||||
assert_eq!(strip_alias_suffix(&with_suffix), bare);
|
||||
assert_eq!(strip_alias_suffix(bare), bare);
|
||||
assert_eq!(strip_alias_suffix(""), "");
|
||||
|
||||
Reference in New Issue
Block a user