Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax-bridge/src/tests.rs')
-rw-r--r--crates/syntax-bridge/src/tests.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/crates/syntax-bridge/src/tests.rs b/crates/syntax-bridge/src/tests.rs
index d37cb508de..8871bf56a5 100644
--- a/crates/syntax-bridge/src/tests.rs
+++ b/crates/syntax-bridge/src/tests.rs
@@ -1,12 +1,13 @@
use rustc_hash::FxHashMap;
use span::Span;
-use syntax::{ast, AstNode};
+use syntax::{AstNode, ast};
use test_utils::extract_annotations;
-use tt::{buffer::Cursor, Leaf, Punct, Spacing};
+use tt::{Leaf, Punct, Spacing, buffer::Cursor};
use crate::{
- dummy_test_span_utils::{DummyTestSpanMap, DUMMY},
- syntax_node_to_token_tree, DocCommentDesugarMode,
+ DocCommentDesugarMode,
+ dummy_test_span_utils::{DUMMY, DummyTestSpanMap},
+ syntax_node_to_token_tree,
};
fn check_punct_spacing(fixture: &str) {