Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
7334d84a
Commit
7334d84a
authored
Oct 05, 2019
by
Greg Messner
Browse files
Removed test of depracated method.
parent
84e09e1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/test/java/org/gitlab4j/api/TestCommitsApi.java
View file @
7334d84a
...
...
@@ -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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment