1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2025-04-04 17:19:35 +00:00

Fix test for Windows

This commit is contained in:
Yuki Okushi 2019-12-22 03:17:40 +09:00
parent 54559a3688
commit a94deed341

View file

@ -1222,7 +1222,10 @@ mod tests {
);
let bytes = test::read_body(resp).await;
#[cfg(unix)]
assert!(format!("{:?}", bytes).contains("/tests/test.png"));
#[cfg(windows)]
assert!(format!("{:?}", bytes).contains("/tests\\\\test.png"));
}
#[actix_rt::test]