Skip to content

Commit

Permalink
Remove recently introduced trailing white space
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite committed May 5, 2024
1 parent 9ef5038 commit 3c5119e
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/test/java/hudson/plugins/git/GitPublisherTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@

/**
* Tests for {@link GitPublisher}
*
*
* @author Kohsuke Kawaguchi
*/
public class GitPublisherTest extends AbstractGitProject {
Expand Down Expand Up @@ -681,7 +681,6 @@ public void testMergeAndPushWithSkipTagEnabled() throws Exception {
scm.getExtensions().add(new LocalBranch("integration"));
project.setScm(scm);


project.getPublishersList().add(new TestGitPublisher(
Collections.emptyList(),
Collections.singletonList(new BranchToPush("origin", "integration")),
Expand Down Expand Up @@ -755,7 +754,7 @@ public void testMergeAndPushWithCharacteristicEnvVar() throws Exception {
FreeStyleProject project = setupSimpleProject("master");

/*
* JOB_NAME seemed like the more obvious choice, but when run from a
* JOB_NAME seemed like the more obvious choice, but when run from a
* multi-configuration job, the value of JOB_NAME includes an equals
* sign. That makes log parsing and general use of the variable more
* difficult. JENKINS_SERVER_COOKIE is a characteristic env var which
Expand Down Expand Up @@ -886,8 +885,8 @@ protected GitClient getGitClient(
gitClient.config(GitClient.ConfigLevel.LOCAL, "tag.gpgSign", "false");
return gitClient;
}
}
}

private boolean existsTag(String tag) throws InterruptedException {
return existsTagInRepo(testGitClient, tag);
}
Expand Down Expand Up @@ -942,7 +941,4 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen

return true;
}



}

0 comments on commit 3c5119e

Please sign in to comment.