aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-05-21 15:34:39 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-05-21 15:34:39 +0200
commit09eeaf869942b99146c25bd3065965aa846241db (patch)
treead5570dcd8eeaf4c240baa56067952a83c11ceb4 /testing
parent39ce50616322a58325540db6ef6832aafa51934f (diff)
downloadaskama-09eeaf869942b99146c25bd3065965aa846241db.tar.gz
askama-09eeaf869942b99146c25bd3065965aa846241db.tar.bz2
askama-09eeaf869942b99146c25bd3065965aa846241db.zip
Remove forgotten debugging cruft
Diffstat (limited to '')
-rw-r--r--testing/tests/inheritance.rs4
1 files 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,
}