diff options
-rw-r--r-- | testing/tests/vars.rs | 6 |
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] |