Remove unused imports

This commit is contained in:
Jeremy Kolb 2019-02-05 07:15:15 -05:00
parent 8ec4b84013
commit c73cc0ab8f
2 changed files with 2 additions and 2 deletions

View file

@ -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]

View file

@ -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;