mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 21:28:51 +00:00
Remove unused imports
This commit is contained in:
parent
8ec4b84013
commit
c73cc0ab8f
2 changed files with 2 additions and 2 deletions
|
@ -154,7 +154,7 @@ pub fn to_line_col(text: &str, offset: TextUnit) -> LineCol {
|
|||
#[cfg(test)]
|
||||
mod test_line_index {
|
||||
use super::*;
|
||||
use proptest::{prelude::*, proptest, proptest_helper};
|
||||
use proptest::{prelude::*, proptest};
|
||||
use ra_text_edit::test_utils::{arb_text, arb_offset};
|
||||
|
||||
#[test]
|
||||
|
|
|
@ -320,7 +320,7 @@ pub fn translate_offset_with_edit(
|
|||
#[cfg(test)]
|
||||
mod test {
|
||||
use super::*;
|
||||
use proptest::{prelude::*, proptest, proptest_helper};
|
||||
use proptest::{prelude::*, proptest};
|
||||
use crate::line_index;
|
||||
use ra_text_edit::test_utils::{arb_offset, arb_text_with_edit};
|
||||
use ra_text_edit::TextEdit;
|
||||
|
|
Loading…
Reference in a new issue