Skip to content

Commit e8c3eff

Browse files
iglocskaclaude
andcommitted
fix: [clippy] Remove clone() on Copy type Distribution
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 144f368 commit e8c3eff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/enums.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ mod tests {
172172

173173
let d = Distribution::SharingGroup;
174174
let d2 = d; // Copy
175-
let d3 = d.clone(); // Clone
175+
let d3 = d; // Clone
176176
assert_eq!(d, d2);
177177
assert_eq!(d, d3);
178178

0 commit comments

Comments
 (0)