Should be assert_eq! not assert_eq

This commit is contained in:
Mike English 2015-01-10 01:52:51 -05:00
parent 9205d74fe0
commit 68ecfe0b61

View file

@ -309,7 +309,7 @@ extern crate adder;
#[test]
fn it_works() {
assert_eq(4, adder::add_two(2));
assert_eq!(4, adder::add_two(2));
}
```