From 8b184511edff62bd3786be3f5d62c1965430278b Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sat, 1 Jul 2023 15:38:34 +0200 Subject: derive: move Syntax into parser module --- askama_derive/src/parser/tests.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'askama_derive/src/parser/tests.rs') diff --git a/askama_derive/src/parser/tests.rs b/askama_derive/src/parser/tests.rs index 801e787..68cf14b 100644 --- a/askama_derive/src/parser/tests.rs +++ b/askama_derive/src/parser/tests.rs @@ -1,5 +1,4 @@ -use crate::config::Syntax; -use crate::parser::{Expr, Node, Whitespace, Ws}; +use super::{Expr, Node, Syntax, Whitespace, Ws}; fn check_ws_split(s: &str, res: &(&str, &str, &str)) { match super::split_ws_parts(s) { -- cgit