libsyntax: Remove all uses of {:?}.
This commit is contained in:
parent
38aca17c47
commit
26e547af5d
10 changed files with 27 additions and 27 deletions
|
@ -823,19 +823,19 @@ mod test {
|
|||
}
|
||||
},
|
||||
_ => {
|
||||
error!("failing value 3: {:?}",first_set);
|
||||
error!("failing value 3: {}",first_set);
|
||||
assert_eq!("wrong 3","correct")
|
||||
}
|
||||
}
|
||||
},
|
||||
_ => {
|
||||
error!("failing value 2: {:?}",delim_elts);
|
||||
error!("failing value 2: {}",delim_elts);
|
||||
assert_eq!("wrong","correct");
|
||||
}
|
||||
}
|
||||
},
|
||||
_ => {
|
||||
error!("failing value: {:?}",tts);
|
||||
error!("failing value: {}",tts);
|
||||
assert_eq!("wrong 1","correct");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue