Remove unwanted print = "ast" forgotten in tests

This commit is contained in:
Guillaume Gomez 2025-09-02 15:13:46 +02:00
parent 129c3549d4
commit 04e9241e4f
2 changed files with 1 additions and 6 deletions

View File

@ -30,11 +30,7 @@ fn test_macro_in_block_inheritance() {
#[test] #[test]
fn test_comment_before_extend() { fn test_comment_before_extend() {
#[derive(Template)] #[derive(Template)]
#[template( #[template(source = r##"{# comment #}{% extends "base.html" %}"##, ext = "txt")]
source = r##"{# comment #}{% extends "base.html" %}"##,
ext = "txt",
print = "ast"
)]
pub struct X { pub struct X {
title: &'static str, title: &'static str,
} }

View File

@ -6,7 +6,6 @@ use askama::Template;
{% extends "base.html" %} {% extends "base.html" %}
"##, "##,
ext = "txt", ext = "txt",
print = "ast"
)] )]
pub struct X; pub struct X;