diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-06-23 18:16:00 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-06-23 18:16:00 +0200 |
commit | c52ea242dc1ba6edad69c10c7923ab0806617976 (patch) | |
tree | fba51b755c19ed4047891c740d457372eac6ceae /testing/tests/simple.rs | |
parent | 9f34349cbaf5b7933c0ab690af5f626c0322c5ca (diff) | |
download | askama-c52ea242dc1ba6edad69c10c7923ab0806617976.tar.gz askama-c52ea242dc1ba6edad69c10c7923ab0806617976.tar.bz2 askama-c52ea242dc1ba6edad69c10c7923ab0806617976.zip |
Remove accidental debugging cruft
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 ff63587..53cb03e 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -237,7 +237,7 @@ fn test_minus() { } #[derive(Template)] -#[template(source = "{{ foo[\"bar\"] }}", ext = "txt", print = "code")] +#[template(source = "{{ foo[\"bar\"] }}", ext = "txt")] struct IndexTemplate { foo: HashMap<String, String>, } |