Skip to content

Commit

Permalink
fix(core): clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Dec 30, 2022
1 parent 84adf59 commit 598b558
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions viz-core/tests/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -411,12 +411,12 @@ async fn main() -> Result<()> {
brha, brhb, brhc, brhd, brhe, brhf, brhg, brhh, brhi, brhj, brhk, brhl, brhm,
];

assert!(!v.is_empty());

let y = v.to_owned();
let y = v.clone();

assert!(!y.is_empty());

assert!(!v.is_empty());

Ok(())
}

Expand Down

0 comments on commit 598b558

Please sign in to comment.