summaryrefslogtreecommitdiffstats
path: root/tests/file_json.rs
diff options
context:
space:
mode:
authorRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:33:38 -0700
committerRyan Leckey <leckey.ryan@gmail.com>2018-07-02 15:33:38 -0700
commitcbb9ef88ea6f6452614dd8bbffce7203b1358a55 (patch)
treefd4f67587f9a36c517a3a3f1ff7ef727697d5fef /tests/file_json.rs
parentbbc78d85610dec79aa4af4dd360131c7880efb5f (diff)
Run rustfmt (nightly)
Diffstat (limited to 'tests/file_json.rs')
-rw-r--r--tests/file_json.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/file_json.rs b/tests/file_json.rs
index c27c9b0..c07a77d 100644
--- a/tests/file_json.rs
+++ b/tests/file_json.rs
@@ -1,13 +1,13 @@
extern crate config;
-extern crate serde;
extern crate float_cmp;
+extern crate serde;
#[macro_use]
extern crate serde_derive;
-use std::collections::HashMap;
-use float_cmp::ApproxEqUlps;
use config::*;
+use float_cmp::ApproxEqUlps;
+use std::collections::HashMap;
#[derive(Debug, Deserialize)]
struct Place {
@@ -72,4 +72,4 @@ fn test_error_parse() {
res.unwrap_err().to_string(),
"expected `:` at line 4 column 1 in tests/Settings-invalid.json".to_string()
);
-} \ No newline at end of file
+}