diff options
Diffstat (limited to '')
-rw-r--r-- | testing/tests/simple.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index 7206add..2cb404e 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -222,10 +222,7 @@ enum Alphabet { } #[derive(Template)] -#[template( - source = "{% if x == Alphabet::Alpha %}true{% endif %}", - ext = "txt" -)] +#[template(source = "{% if x == Alphabet::Alpha %}true{% endif %}", ext = "txt")] struct PathCompareTemplate { x: Alphabet, } |