aboutsummaryrefslogtreecommitdiff
path: root/crates/test_utils
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-07-04 21:05:17 +0100
committerAleksey Kladov <[email protected]>2019-07-04 21:09:09 +0100
commit1834bae5b86c54ed9dece26e82436919d59e6cb7 (patch)
tree92c8b984e874b67fa1831613464bbe356c1af3dd /crates/test_utils
parent2b2cd829b0f95aef338227deb05ec7503dae9b6c (diff)
allow rustfmt to reorder imports
This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
Diffstat (limited to 'crates/test_utils')
-rw-r--r--crates/test_utils/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/test_utils/src/lib.rs b/crates/test_utils/src/lib.rs
index 8bb3b3937..ea99ac062 100644
--- a/crates/test_utils/src/lib.rs
+++ b/crates/test_utils/src/lib.rs
@@ -3,11 +3,11 @@ pub mod marks;
3 3
4use std::{ 4use std::{
5 fs, 5 fs,
6 path::{Path, PathBuf} 6 path::{Path, PathBuf},
7}; 7};
8 8
9use text_unit::{TextRange, TextUnit};
10use serde_json::Value; 9use serde_json::Value;
10use text_unit::{TextRange, TextUnit};
11 11
12pub use difference::Changeset as __Changeset; 12pub use difference::Changeset as __Changeset;
13 13