syntax: Remove usage of fmt!
This commit is contained in:
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user