diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-11-04 14:00:26 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-11-04 14:00:26 +0100 |
commit | ebf99e6628aeb242917ccfcca5dff3d075149ccc (patch) | |
tree | baa447058eb1864e7dd4eabd393e5d374e605397 /testing | |
parent | e0f60ca8dde7b828dcb440737f50f90639f33b70 (diff) | |
download | askama-ebf99e6628aeb242917ccfcca5dff3d075149ccc.tar.gz askama-ebf99e6628aeb242917ccfcca5dff3d075149ccc.tar.bz2 askama-ebf99e6628aeb242917ccfcca5dff3d075149ccc.zip |
Fix formatting with cargo fmt
Diffstat (limited to 'testing')
-rw-r--r-- | testing/tests/simple.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/tests/simple.rs b/testing/tests/simple.rs index 168644a..a311e90 100644 --- a/testing/tests/simple.rs +++ b/testing/tests/simple.rs @@ -24,7 +24,10 @@ fn test_variables() { Iñtërnâtiônàlizætiøn is important\n\ in vars too: Iñtërnâtiônàlizætiøn" ); - assert_eq!(<VariablesTemplate as SizedTemplate>::extension(), Some("html")); + assert_eq!( + <VariablesTemplate as SizedTemplate>::extension(), + Some("html") + ); } #[derive(Template)] |