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:
parent
54559a3688
commit
a94deed341
1 changed files with 3 additions and 0 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue