In the grade-school tests assertThat is used for the test assertions. To be more consistent with the other exercises we should use assertEquals instead. For example:
assertThat(school.roster(), is(expected));
Should be changed to:
assertEquals(expected, school.roster());
Changed for consistency, let me know if it needs more changes.
I'll go for it.
@yuval105 Thanks for wanting to help but in this case @AndresAcuna got there first 馃檪 Feel free to work on any other issue or anything else you think needs improving! 馃檪
Thanks for getting this done @AndresAcuna - closing now as fixed in #1591
Most helpful comment
Changed for consistency, let me know if it needs more changes.