fix flaky test(s)
This commit is contained in:
committed by
Martin Algesten
parent
11a8eb470c
commit
c305b915f8
@@ -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());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user