change some uses of fail_unless to assert_eq

This commit is contained in:
John Clements 2013-03-13 15:30:37 -07:00
parent ab8e46b066
commit 3cd65c233d
16 changed files with 251 additions and 296 deletions

View file

@ -2258,7 +2258,6 @@ pub mod test {
use core::cmp::Eq;
use core::option::None;
use parse;
use util::testing::check_equal;
fn string_check<T:Eq> (given : &T, expected: &T) {
if !(given == expected) {
@ -2279,7 +2278,7 @@ pub mod test {
cf: ast::return_val
};
let generics = ast_util::empty_generics();
check_equal (&fun_to_str(&decl, abba_ident, None, &generics, mock_interner),
assert_eq!(&fun_to_str(&decl, abba_ident, None, &generics, mock_interner),
&~"fn abba()");
}
@ -2299,7 +2298,7 @@ pub mod test {
});
let varstr = variant_to_str(var,mock_interner);
check_equal(&varstr,&~"pub principal_skinner");
assert_eq!(&varstr,&~"pub principal_skinner");
}
}