fix flaky test(s)

This commit is contained in:
Devrim Şahin
2023-04-18 12:16:01 +03:00
committed by Martin Algesten
parent 11a8eb470c
commit c305b915f8

View File

@@ -569,7 +569,7 @@ mod tests {
let resp = agent.get("http://www.google.com/").call().unwrap();
assert_eq!(
"text/html;charset=ISO-8859-1",
resp.header("content-type").unwrap()
resp.header("content-type").unwrap().replace("; ", ";")
);
assert_eq!("text/html", resp.content_type());
}
@@ -582,7 +582,7 @@ mod tests {
let resp = agent.get("https://www.google.com/").call().unwrap();
assert_eq!(
"text/html;charset=ISO-8859-1",
resp.header("content-type").unwrap()
resp.header("content-type").unwrap().replace("; ", ";")
);
assert_eq!("text/html", resp.content_type());
}
@@ -598,7 +598,7 @@ mod tests {
let resp = agent.get("https://www.google.com/").call().unwrap();
assert_eq!(
"text/html;charset=ISO-8859-1",
resp.header("content-type").unwrap()
resp.header("content-type").unwrap().replace("; ", ";")
);
assert_eq!("text/html", resp.content_type());
}