aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2019-03-18 10:12:42 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2019-03-18 10:12:42 +0100
commite89eee3ffc63c7b96b32e4ab815e1b99c7facdcb (patch)
tree6ea5dba8620000f13da45707c43b1f012c3c2eac /testing
parentcdaf7ea35d98b6c2a4d11d57b60abf6c3ff5ccc2 (diff)
downloadaskama-e89eee3ffc63c7b96b32e4ab815e1b99c7facdcb.tar.gz
askama-e89eee3ffc63c7b96b32e4ab815e1b99c7facdcb.tar.bz2
askama-e89eee3ffc63c7b96b32e4ab815e1b99c7facdcb.zip
Remove debugging cruft
Diffstat (limited to 'testing')
-rw-r--r--testing/tests/vars.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/testing/tests/vars.rs b/testing/tests/vars.rs
index da8aef6..0e1e367 100644
--- a/testing/tests/vars.rs
+++ b/testing/tests/vars.rs
@@ -45,11 +45,7 @@ fn test_let_decl() {
}
#[derive(Template)]
-#[template(
- source = "{% for v in self.0 %}{{ v }}{% endfor %}",
- ext = "txt",
- print = "code"
-)]
+#[template(source = "{% for v in self.0 %}{{ v }}{% endfor %}", ext = "txt")]
struct SelfIterTemplate(Vec<usize>);
#[test]