diff options
author | Nathan Lapel <nathanlapel@gmail.com> | 2020-03-18 22:09:00 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-03-18 22:33:51 +0100 |
commit | 5e1a7384e47e01157d6a8b3beb42b57026c417e8 (patch) | |
tree | b58f821d2bbedfc5744fddd5042fe90656e10434 /testing/tests/simple.rs | |
parent | 520c5d7d5f09c0b205e6e1c471483730380c5e33 (diff) | |
download | askama-5e1a7384e47e01157d6a8b3beb42b57026c417e8.tar.gz askama-5e1a7384e47e01157d6a8b3beb42b57026c417e8.tar.bz2 askama-5e1a7384e47e01157d6a8b3beb42b57026c417e8.zip |
Use _visit_args in var/path calls
Diffstat (limited to 'testing/tests/simple.rs')
-rw-r--r-- | testing/tests/simple.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index 3e156b4..7dcacba 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -265,7 +265,7 @@ fn test_slice_literal() { #[derive(Template)] #[template(source = "Hello, {{ world(\"123\", 4) }}!", ext = "txt")] struct FunctionRefTemplate { - world: fn(s: &str, v: u8) -> String, + world: fn(s: &str, v: &u8) -> String, } #[test] @@ -276,7 +276,7 @@ fn test_func_ref_call() { assert_eq!(t.render().unwrap(), "Hello, world(123, 4)!"); } -fn world2(s: &str, v: u8) -> String { +fn world2(s: &str, v: &u8) -> String { format!("world{}{}", v, s) } @@ -294,7 +294,7 @@ fn test_path_func_call() { struct FunctionTemplate; impl FunctionTemplate { - fn world3(&self, s: &str, v: u8) -> String { + fn world3(&self, s: &str, v: &u8) -> String { format!("world{}{}", s, v) } } |