Skip to content

Commit

Permalink
updates comment in full-test
Browse files Browse the repository at this point in the history
  • Loading branch information
nkamc committed Aug 15, 2014
1 parent 3e84bbb commit ebb984b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,13 +315,13 @@ C.getChange = function (totalPayable, cashPaid) {
};
```

Add one more test to ensure we are fully exercising our method:
Add one more test to ensure we are *fully* exercising our method:

```
totalPayable = 1487 // £14.87
cashPaid = 10000 // £10.00
totalPayable = 1487 // £14.87 (fourteen pounds and eighty-seven pence)
cashPaid = 10000 // £100.00 (one hundred pounds)
dfference = 8513 // £85.13
change = [5000, 2000, 1000, 500, 10, 2, 1 ] // £50, £20, £10, £5, 10p, 2p, 1p
change = [5000, 2000, 1000, 500, 10, 2, 1 ] // £50, £20, £10, £5, 10p, 2p, 1p
```

```javascript
Expand Down

0 comments on commit ebb984b

Please sign in to comment.