1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 06:57:43 +02:00

test: fix tests based on mime-guess inference

relates to https://github.com/abonander/mime_guess/pull/86
This commit is contained in:
Rob Ede
2024-06-30 20:28:11 +01:00
parent 0b193c7106
commit 763c58445a
2 changed files with 4 additions and 7 deletions

View File

@ -307,11 +307,11 @@ mod tests {
let resp = file.respond_to(&req);
assert_eq!(
resp.headers().get(header::CONTENT_TYPE).unwrap(),
"application/javascript; charset=utf-8"
"text/javascript",
);
assert_eq!(
resp.headers().get(header::CONTENT_DISPOSITION).unwrap(),
"inline; filename=\"test.js\""
"inline; filename=\"test.js\"",
);
}