diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-09-25 15:50:57 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-25 15:50:57 +0800 |
| commit | 4d4ea7585a107f0247941e24cabd3d6aace7fab5 (patch) | |
| tree | 8c3ffb1f97dbbedb7756fb33f519547083047f24 /crates/utils/cfg_file/cfg_file_test/src | |
| parent | 2865206dda1d57df1c95dd8e49d5599db89407ae (diff) | |
| parent | 0eeb842c21ff1681e77ccbd47fe7a3c9779a65d5 (diff) | |
Merge pull request #1 from JustEnoughVCS/jvcs_dev
Fix clippy warnings in test files
Diffstat (limited to 'crates/utils/cfg_file/cfg_file_test/src')
| -rw-r--r-- | crates/utils/cfg_file/cfg_file_test/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/utils/cfg_file/cfg_file_test/src/lib.rs b/crates/utils/cfg_file/cfg_file_test/src/lib.rs index 800dfe7..4db4c22 100644 --- a/crates/utils/cfg_file/cfg_file_test/src/lib.rs +++ b/crates/utils/cfg_file/cfg_file_test/src/lib.rs @@ -19,7 +19,7 @@ mod test_cfg_file { let mut example = ExampleConfig { name: "Weicao".to_string(), age: 22, - hobby: vec!["Programming", "Painting"] + hobby: ["Programming", "Painting"] .iter() .map(|m| m.to_string()) .collect(), |
