Auto merge of #192 - petemcfarlane:patch-2, r=komaeda

fix(test1): Swap assertion parameter order

`Expected` should come before `actual`, other wise it leads to confusing compiler messages, e.g.
```
note: expected type `()`
         found type `{integer}`
```
There may be other tests that need updating, but this is as far as I am through the Rustlings course right now :)
This commit is contained in:
bors 2019-07-13 16:27:14 +00:00
commit 1c789dda08
1 changed files with 2 additions and 2 deletions

View File

@ -16,6 +16,6 @@ fn verify_test() {
let price1 = calculate_price(55);
let price2 = calculate_price(40);
assert_eq!(price1, 55);
assert_eq!(price2, 80);
assert_eq!(55, price1);
assert_eq!(80, price2);
}