Skip to content

Commit

Permalink
Updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rladdusaw committed Jan 9, 2020
1 parent bc97bb5 commit ab48bde
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public void testGetRemoteProjects() throws Exception {
List<RemoteProject> remoteProjects = gitHubService.getRemoteProjects();
assertEquals("Didn't get all the remote projects", 2, remoteProjects.size());
assertEquals("Number of Requests was incorrect", 3, remoteProjects.get(0).getRequestCount());
assertEquals("Number of Issues was incorrect", 3, remoteProjects.get(0).getIssueCount());
assertEquals("Number of Issues was incorrect", 6, remoteProjects.get(0).getIssueCount());
assertEquals("Number of Features was incorrect", 6, remoteProjects.get(0).getFeatureCount());
assertEquals("Number of Defects was incorrect", 3, remoteProjects.get(0).getDefectCount());
}
Expand All @@ -340,7 +340,7 @@ public void testGetRemoteProjectByScopeId() throws Exception {
assertNotNull("Didn't get the remote project", project);
assertEquals("Did not get the expected project", String.valueOf(TEST_REPOSITORY1_ID), project.getId());
assertEquals("Number of Requests was incorrect", 3, project.getRequestCount());
assertEquals("Number of Issues was incorrect", 3, project.getIssueCount());
assertEquals("Number of Issues was incorrect", 6, project.getIssueCount());
assertEquals("Number of Features was incorrect", 6, project.getFeatureCount());
assertEquals("Number of Defects was incorrect", 3, project.getDefectCount());
}
Expand Down

0 comments on commit ab48bde

Please sign in to comment.