summaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/config.rs b/src/config.rs
index bddfb40..ef3d708 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -103,8 +103,7 @@ mod tests {
( $e:expr , $pat:pat => $c:expr ) => {
match $e {
$pat => $c,
- ref e => panic!("assertion failed: `{:?}` does not match `{}`",
- e, stringify!($pat))
+ ref e => panic!("assertion failed: `{:?}` does not match `{}`", e, stringify!($pat))
}
};
}