diff options
Diffstat (limited to '')
-rw-r--r-- | testing/tests/inheritance.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/tests/inheritance.rs b/testing/tests/inheritance.rs index e9ea9a2..bac9bf5 100644 --- a/testing/tests/inheritance.rs +++ b/testing/tests/inheritance.rs @@ -24,5 +24,8 @@ fn test_use_base_directly() { #[test] fn test_simple_extends() { let t = ChildTemplate { _parent: BaseTemplate { title: "Bar" } }; - assert_eq!(t.render().unwrap(), "Bar\n(Bar) Content goes here\nFoo\nCopyright 2017"); + assert_eq!( + t.render().unwrap(), + "Bar\n(Bar) Content goes here\nFoo\nCopyright 2017" + ); } |