Fixed a test for the Race class

- Fixed a typo causing the test to fail
- #test #fix
This commit is contained in:
Michael Rausch
2017-03-04 19:34:36 +13:00
parent c1cc4f8b69
commit e6d899f7b1
+1 -1
View File
@@ -40,6 +40,6 @@ public class RaceTest
race.addBoat(boat1); race.addBoat(boat1);
race.addBoat(boat2); race.addBoat(boat2);
assertEquals(Array.getLength(boats.getBoats()), 2); assertEquals(Array.getLength(race.getBoats()), 2);
} }
} }