diff options
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, } |