Skip to content

Commit a469534

Browse files
committed
Merge pull request #7 from steveklabnik/master
fail -> panic
2 parents 469a6bc + 205e93f commit a469534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/glob-std.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use std::io::TempDir;
2121

2222
macro_rules! assert_eq ( ($e1:expr, $e2:expr) => (
2323
if $e1 != $e2 {
24-
fail!("{} != {}", stringify!($e1), stringify!($e2))
24+
panic!("{} != {}", stringify!($e1), stringify!($e2))
2525
}
2626
) )
2727

0 commit comments

Comments
 (0)