syntect icon indicating copy to clipboard operation
syntect copied to clipboard

Remove unused imports in tests for yaml_load.rs

Open rhysd opened this issue 1 year ago • 0 comments

While working on #530, I noticed cargo test warned unused imports in test code.

warning: unused import: `crate::parsing::syntax_definition::*`
   --> src/parsing/yaml_load.rs:890:9
    |
890 |     use crate::parsing::syntax_definition::*;
    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: `#[warn(unused_imports)]` on by default

This PR fixes the warning.

rhysd avatar Apr 15 '24 11:04 rhysd