Commit 530d7519 authored by Greg Messner's avatar Greg Messner
Browse files

Fixed testCommitRefs().

parent 24fbb5bc
...@@ -165,8 +165,8 @@ public class TestCommitsApi { ...@@ -165,8 +165,8 @@ public class TestCommitsApi {
assertTrue(commits.size() > 0); assertTrue(commits.size() > 0);
List<CommitRef> commitRefs = gitLabApi.getCommitsApi().getCommitRefs(testProject.getId(), commits.get(0).getId()); List<CommitRef> commitRefs = gitLabApi.getCommitsApi().getCommitRefs(testProject.getId(), commits.get(0).getId());
assertNotNull(commits); assertNotNull(commitRefs);
assertTrue(commits.size() > 0); assertTrue(commitRefs.size() > 0);
} }
@Test @Test
......
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