From 09eeaf869942b99146c25bd3065965aa846241db Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 21 May 2018 15:34:39 +0200 Subject: Remove forgotten debugging cruft --- testing/tests/inheritance.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/tests/inheritance.rs b/testing/tests/inheritance.rs index 80fa457..6e032ba 100644 --- a/testing/tests/inheritance.rs +++ b/testing/tests/inheritance.rs @@ -62,11 +62,11 @@ fn test_different_module() { #[derive(Template)] -#[template(path = "nested-base.html", print = "code")] +#[template(path = "nested-base.html")] struct NestedBaseTemplate {} #[derive(Template)] -#[template(path = "nested-child.html", print = "code")] +#[template(path = "nested-child.html")] struct NestedChildTemplate { _parent: NestedBaseTemplate, } -- cgit