summaryrefslogtreecommitdiff
path: root/dhall
diff options
context:
space:
mode:
authorNadrieril2019-03-31 18:47:57 +0200
committerNadrieril2019-03-31 18:47:57 +0200
commitbfe3f7f75570540fa184a133653d16e86f22667a (patch)
treeab8df2a07f38539d4731cdff9b86d9d973055f21 /dhall
parentf5d2151d35942b957230c3081a928af3619d9400 (diff)
rustfmt
Diffstat (limited to 'dhall')
-rw-r--r--dhall/tests/dhall_type.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/dhall/tests/dhall_type.rs b/dhall/tests/dhall_type.rs
index faece20..941e3a4 100644
--- a/dhall/tests/dhall_type.rs
+++ b/dhall/tests/dhall_type.rs
@@ -33,10 +33,7 @@ fn test_dhall_type() {
#[derive(Type)]
#[allow(dead_code)]
struct C<T>(T, Option<String>);
- assert_eq!(
- <C<bool>>::get_type(),
- <(bool, Option<String>)>::get_type()
- );
+ assert_eq!(<C<bool>>::get_type(), <(bool, Option<String>)>::get_type());
#[derive(Type)]
#[allow(dead_code)]