diff options
author | Florian Diebold <[email protected]> | 2020-10-23 16:18:41 +0100 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2020-10-24 17:25:23 +0100 |
commit | bc6520010569bb5eaf3ef403db9113a743da1d55 (patch) | |
tree | 16e6e12fb249bf46ff5e8ba4ee07a8d757970cc2 /crates/test_utils | |
parent | 4105378dc7479a3dbd39a4afb3eba67d083bd7f8 (diff) |
Fix indentation of inserted use statements
Diffstat (limited to 'crates/test_utils')
-rw-r--r-- | crates/test_utils/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/test_utils/src/lib.rs b/crates/test_utils/src/lib.rs index ad586c882..a49be4602 100644 --- a/crates/test_utils/src/lib.rs +++ b/crates/test_utils/src/lib.rs | |||
@@ -43,12 +43,12 @@ macro_rules! assert_eq_text { | |||
43 | let right = $right; | 43 | let right = $right; |
44 | if left != right { | 44 | if left != right { |
45 | if left.trim() == right.trim() { | 45 | if left.trim() == right.trim() { |
46 | eprintln!("Left:\n{:?}\n\nRight:\n{:?}\n\nWhitespace difference\n", left, right); | 46 | std::eprintln!("Left:\n{:?}\n\nRight:\n{:?}\n\nWhitespace difference\n", left, right); |
47 | } else { | 47 | } else { |
48 | let changeset = $crate::__Changeset::new(left, right, "\n"); | 48 | let changeset = $crate::__Changeset::new(left, right, "\n"); |
49 | eprintln!("Left:\n{}\n\nRight:\n{}\n\nDiff:\n{}\n", left, right, changeset); | 49 | std::eprintln!("Left:\n{}\n\nRight:\n{}\n\nDiff:\n{}\n", left, right, changeset); |
50 | } | 50 | } |
51 | eprintln!($($tt)*); | 51 | std::eprintln!($($tt)*); |
52 | panic!("text differs"); | 52 | panic!("text differs"); |
53 | } | 53 | } |
54 | }}; | 54 | }}; |