diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-05-21 15:34:39 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-05-21 15:34:39 +0200 |
commit | 09eeaf869942b99146c25bd3065965aa846241db (patch) | |
tree | ad5570dcd8eeaf4c240baa56067952a83c11ceb4 | |
parent | 39ce50616322a58325540db6ef6832aafa51934f (diff) | |
download | askama-09eeaf869942b99146c25bd3065965aa846241db.tar.gz askama-09eeaf869942b99146c25bd3065965aa846241db.tar.bz2 askama-09eeaf869942b99146c25bd3065965aa846241db.zip |
Remove forgotten debugging cruft
Diffstat (limited to '')
-rw-r--r-- | testing/tests/inheritance.rs | 4 |
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, } |