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 13f040c commit 079e8f7Copy full SHA for 079e8f7
src/test/java/io/jenkins/plugins/checks/github/CheckRunGHEventSubscriberTest.java
@@ -230,7 +230,7 @@ void shouldNotScheduleRerunWhenUserDoesNotHaveRequiredRole() throws IOException
230
SCMFacade scmFacade = mock(SCMFacade.class);
231
GitHubStatusChecksProperties githubStatusChecksProperties = mock(GitHubStatusChecksProperties.class);
232
User user = mock(User.class);
233
- List<String> userRoles = Collections.<String>emptyList();;
+ List<String> userRoles = Collections.<String>emptyList();
234
235
when(jenkinsFacade.getBuild("codingstyle/PR-1#2")).thenReturn(Optional.of(run));
236
when(jenkinsFacade.getFullNameOf(job)).thenReturn("codingstyle/PR-1");
0 commit comments