diff options
Diffstat (limited to 'askama_derive/src/parser/tests.rs')
-rw-r--r-- | askama_derive/src/parser/tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/askama_derive/src/parser/tests.rs b/askama_derive/src/parser/tests.rs index 045bf28..91bb09b 100644 --- a/askama_derive/src/parser/tests.rs +++ b/askama_derive/src/parser/tests.rs @@ -224,8 +224,8 @@ fn test_parse_root_path() { #[test] fn change_delimiters_parse_filter() { let syntax = Syntax { - expr_start: "{=".to_owned(), - expr_end: "=}".to_owned(), + expr_start: "{=", + expr_end: "=}", ..Syntax::default() }; |