devinjdangelo commented on PR #9802:
URL:
https://github.com/apache/arrow-datafusion/pull/9802#issuecomment-2019321941
> Hi @alamb, clippy test is failing due to unused ´not´ import, but that's
not true. I'm using it to perform the test. Any hints on what could be the
issue here?
Hey @sebastian2296 if you are using an import only for a test, you can
import it within the mod tests {} block. E.g.
```rust
use regular_dependency;
fn some_code(){
()
}
mod tests{
use test_dependency;
...
}
```
Thank you for the work on this PR! :pray:
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]