We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24fbb5b commit 530d751Copy full SHA for 530d751
src/test/java/org/gitlab4j/api/TestCommitsApi.java
@@ -165,8 +165,8 @@ public void testCommitRefs() throws GitLabApiException {
165
assertTrue(commits.size() > 0);
166
167
List<CommitRef> commitRefs = gitLabApi.getCommitsApi().getCommitRefs(testProject.getId(), commits.get(0).getId());
168
- assertNotNull(commits);
169
- assertTrue(commits.size() > 0);
+ assertNotNull(commitRefs);
+ assertTrue(commitRefs.size() > 0);
170
}
171
172
@Test
0 commit comments