diff options
author | Steven Pease <peasteven@gmail.com> | 2019-03-10 12:26:00 -0700 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2019-03-18 10:53:59 +0100 |
commit | d1b47f8908f7ca71da1f767432bb33cb87bbee14 (patch) | |
tree | 61241379caf9cff6548b4ec7aca6cfc0c318f5a6 /testing/tests/gotham.rs | |
parent | 9a12888da65c8a0348634011f496e656ac7e5d8f (diff) | |
download | askama-d1b47f8908f7ca71da1f767432bb33cb87bbee14.tar.gz askama-d1b47f8908f7ca71da1f767432bb33cb87bbee14.tar.bz2 askama-d1b47f8908f7ca71da1f767432bb33cb87bbee14.zip |
Default to UTF-8 mime type for actix-web and gotham
Diffstat (limited to '')
-rw-r--r-- | testing/tests/gotham.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/tests/gotham.rs b/testing/tests/gotham.rs index f127d59..225a0ef 100644 --- a/testing/tests/gotham.rs +++ b/testing/tests/gotham.rs @@ -31,7 +31,10 @@ fn test_gotham() { let content_type = headers .get("content-type") .expect("Response did not contain content-type header"); - assert_eq!(content_type.to_str().unwrap(), mime::TEXT_HTML.to_string()); + assert_eq!( + content_type.to_str().unwrap(), + mime::TEXT_HTML_UTF_8.to_string() + ); } let body = res.read_utf8_body().expect("failed to read response body"); |