Commit 7334d84a authored by Greg Messner's avatar Greg Messner
Browse files

Removed test of depracated method.

parent 84e09e1e
......@@ -127,10 +127,6 @@ public class TestCommitsApi extends AbstractIntegrationTest {
assertNotNull(commits);
assertTrue(commits.size() > 0);
commits = gitLabApi.getCommitsApi().getCommits(testProject.getId(), null, since, new Date(), 1, 10);
assertNotNull(commits);
assertTrue(commits.size() > 0);
Pager<Commit> pager = gitLabApi.getCommitsApi().getCommits(testProject.getId(), null, new Date(), null, 10);
assertNotNull(pager);
assertTrue(pager.getTotalItems() == 0);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment