aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests/hello.rs
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tests/hello.rs')
-rw-r--r--testing/tests/hello.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tests/hello.rs b/testing/tests/hello.rs
index 12ffde6..0d0c976 100644
--- a/testing/tests/hello.rs
+++ b/testing/tests/hello.rs
@@ -4,7 +4,7 @@ extern crate askama;
use askama::Template;
#[derive(Template)] // this will generate the code...
-#[template(path = "hello.html", print = "all")] // using the template in this path, relative
+#[template(path = "hello.html")] // using the template in this path, relative
// to the templates dir in the crate root
struct HelloTemplate<'a> { // the name of the struct can be anything
name: &'a str, // the field name should match the variable name