aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/include.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testing/tests/include.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/testing/tests/include.rs b/testing/tests/include.rs
index d2998a1..f474c55 100644
--- a/testing/tests/include.rs
+++ b/testing/tests/include.rs
@@ -12,8 +12,6 @@ struct IncludeTemplate<'a> {
#[test]
fn test_include() {
let strs = vec!["foo", "bar"];
- let s = IncludeTemplate {
- strs: &strs,
- };
+ let s = IncludeTemplate { strs: &strs };
assert_eq!(s.render().unwrap(), "INCLUDED: fooINCLUDED: bar")
}