syntax: Remove usage of fmt!

This commit is contained in:
Alex Crichton
2013-09-27 21:01:58 -07:00
parent 7e709bfd0d
commit af3b132285
34 changed files with 342 additions and 342 deletions

View File

@@ -416,18 +416,18 @@ mod test {
_ => assert_eq!("wrong 4","correct")
},
_ => {
error!("failing value 3: %?",first_set);
error2!("failing value 3: {:?}",first_set);
assert_eq!("wrong 3","correct")
}
},
_ => {
error!("failing value 2: %?",delim_elts);
error2!("failing value 2: {:?}",delim_elts);
assert_eq!("wrong","correct");
}
},
_ => {
error!("failing value: %?",tts);
error2!("failing value: {:?}",tts);
assert_eq!("wrong 1","correct");
}
}