Skip to content

Commit

Permalink
Fix syntax error on android tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Aparicio committed Dec 7, 2014
1 parent 2ed42bf commit 1fea900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/io/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1049,10 +1049,10 @@ mod tests {
for &(ref k, ref v) in r.iter() {
// don't check android RANDOM variables
if *k != "RANDOM".to_string() {
assert!(output..contains(format!("{}={}",
assert!(output.contains(format!("{}={}",
*k,
*v).as_slice()) ||
output..contains(format!("{}=\'{}\'",
output.contains(format!("{}=\'{}\'",
*k,
*v).as_slice()));
}
Expand Down

1 comment on commit 1fea900

@alexcrichton
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

r+ p=1

Please sign in to comment.