Skip to content

Commit

Permalink
Merge pull request #133 from PierreBtz/pbeitz/bump-baseline
Browse files Browse the repository at this point in the history
[chore] Bump to the 2.440.1 baseline
  • Loading branch information
PierreBtz committed May 1, 2024
2 parents 2c4d4de + d5b8c9a commit d22186e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.74</version>
<version>4.81</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -43,16 +43,16 @@
<properties>
<changelist>999999-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/audit-trail-plugin</gitHubRepo>
<jenkins.version>2.387.3</jenkins.version>
<jenkins.version>2.440.1</jenkins.version>
<spotless.check.skip>false</spotless.check.skip>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.387.x</artifactId>
<version>2543.vfb_1a_5fb_9496d</version>
<artifactId>bom-2.440.x</artifactId>
<version>3010.vec758b_8e7da_3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void shouldConfigureConsoleAuditLogger() throws Exception {
HtmlPage configure = wc.goTo("configure");
HtmlForm form = configure.getFormByName("config");
j.getButtonByCaption(form, "Add Logger").click();
configure.getAnchorByText("Console").click();
j.getButtonByCaption(form, "Console").click();
wc.waitForBackgroundJavaScript(2000);

// When
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void shouldConfigureElasticSearchAuditLogger() throws Exception {
HtmlPage configure = jenkinsWebClient.goTo("configure");
HtmlForm form = configure.getFormByName("config");
jenkinsRule.getButtonByCaption(form, "Add Logger").click();
configure.getAnchorByText("Elastic Search server").click();
jenkinsRule.getButtonByCaption(form, "Elastic Search server").click();
jenkinsWebClient.waitForBackgroundJavaScript(2000);

// When
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void sendConfiguration(JenkinsRule j, JenkinsRule.WebClient wc) throws Ex
HtmlPage configure = wc.goTo("configure");
HtmlForm form = configure.getFormByName("config");
j.getButtonByCaption(form, ADD_LOGGER_BUTTON_TEXT).click();
configure.getAnchorByText(LOG_FILE_COMBO_TEXT).click();
j.getButtonByCaption(form, LOG_FILE_COMBO_TEXT).click();
wc.waitForBackgroundJavaScript(TIMEOUT);
form.getInputByName(LOG_LOCATION_INPUT_NAME).setValue(logFile.getPath());
form.getInputByName(LOG_FILE_SIZE_INPUT_NAME).setValue("1");
Expand Down

0 comments on commit d22186e

Please sign in to comment.