Skip to content

Commit

Permalink
Fixing broken test
Browse files Browse the repository at this point in the history
Broke when we added a new project to son
  • Loading branch information
matt-richardson committed Mar 9, 2016
1 parent a7df783 commit 430ebfd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public void can_parse_projects_response() throws IOException, ParseException {
ApiProjectsResponse sut = new ApiProjectsResponse(json);

Assert.assertFalse(sut.projects.isEmpty());
Assert.assertEquals(sut.projects.size(), 8);
Assert.assertEquals(sut.projects.size(), 9);
Project[] array = sut.projects.toArray();
Assert.assertEquals(array[0].id, "Projects-24");
Assert.assertEquals(array[0].progressionApiLink, "/api/progression/Projects-24");
Expand Down

0 comments on commit 430ebfd

Please sign in to comment.