diff options
author | Tuomas Siipola <tuomas@zpl.fi> | 2020-01-03 20:36:17 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-03 19:56:18 +0100 |
commit | cef055108de6c51c1423cd6a8919730ef01f64a3 (patch) | |
tree | 1e2d2bbac73110453388b13ba781a1101803a37b /testing/tests/simple.rs | |
parent | 2446315d38882efe43a31a3749481eac9b25615d (diff) | |
download | askama-cef055108de6c51c1423cd6a8919730ef01f64a3.tar.gz askama-cef055108de6c51c1423cd6a8919730ef01f64a3.tar.bz2 askama-cef055108de6c51c1423cd6a8919730ef01f64a3.zip |
Support char literals
Diffstat (limited to 'testing/tests/simple.rs')
-rw-r--r-- | testing/tests/simple.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index 6dbfcfb..53f1122 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -119,7 +119,7 @@ struct LiteralsTemplate {} #[test] fn test_literals() { let s = LiteralsTemplate {}; - assert_eq!(s.render().unwrap(), "a\ntrue\nfalse"); + assert_eq!(s.render().unwrap(), "a\na\ntrue\nfalse"); } struct Holder { |