We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ed42bf commit 1fea900Copy full SHA for 1fea900
src/libstd/io/process.rs
@@ -1049,10 +1049,10 @@ mod tests {
1049
for &(ref k, ref v) in r.iter() {
1050
// don't check android RANDOM variables
1051
if *k != "RANDOM".to_string() {
1052
- assert!(output..contains(format!("{}={}",
+ assert!(output.contains(format!("{}={}",
1053
*k,
1054
*v).as_slice()) ||
1055
- output..contains(format!("{}=\'{}\'",
+ output.contains(format!("{}=\'{}\'",
1056
1057
*v).as_slice()));
1058
}
0 commit comments