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]
fn test_comment_before_extend() {
#[derive(Template)]
#[template(
source = r##"{# comment #}{% extends "base.html" %}"##,
ext = "txt",
print = "ast"
)]
#[template(source = r##"{# comment #}{% extends "base.html" %}"##, ext = "txt")]
pub struct X {
title: &'static str,
}

View File

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