aboutsummaryrefslogtreecommitdiffstats
path: root/askama_mendes/tests/basic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'askama_mendes/tests/basic.rs')
-rw-r--r--askama_mendes/tests/basic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_mendes/tests/basic.rs b/askama_mendes/tests/basic.rs
index 2a07c13..e2f5b25 100644
--- a/askama_mendes/tests/basic.rs
+++ b/askama_mendes/tests/basic.rs
@@ -19,7 +19,7 @@ async fn test() {
rsp.headers
.get("content-type")
.and_then(|hv| hv.to_str().ok()),
- Some("text/plain")
+ Some("text/plain; charset=utf-8")
);
assert_eq!(to_bytes(body).await.unwrap(), &b"Hello, world!"[..]);
}