Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>[2.9.10,)</version>
<version>2.9.9.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public void testDoFillCredentialsIdItemsAddsFromCredentialsStore() throws IOExce
public void testIgnoreSendingTestCoverageToInfluxDbFalse() {
BuildStatusConfig instance = new BuildStatusConfig();
boolean expectedIgnoreSendingTestCoverageToInflux = false;
instance.setIgnoreSendingTestResultsToInflux(expectedIgnoreSendingTestCoverageToInflux);
instance.setIgnoreSendingTestCoverageToInflux(expectedIgnoreSendingTestCoverageToInflux);
boolean result = instance.getIgnoreSendingTestCoverageToInflux();
assertEquals(expectedIgnoreSendingTestCoverageToInflux, result);
}
Expand All @@ -290,7 +290,7 @@ public void testIgnoreSendingTestCoverageToInfluxDbTrue() {
public void testIgnoreSendingTestResultsToInfluxDbTrue() {
BuildStatusConfig instance = new BuildStatusConfig();
boolean expectedIgnoreSendingTestResultsToInflux = true;
instance.setIgnoreSendingTestCoverageToInflux(expectedIgnoreSendingTestResultsToInflux);
instance.setIgnoreSendingTestResultsToInflux(expectedIgnoreSendingTestResultsToInflux);
boolean result = instance.getIgnoreSendingTestResultsToInflux();
assertEquals(expectedIgnoreSendingTestResultsToInflux, result);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void testGetCredentialsEmpty() {
public void testGetIgnoreSendingTestCoverageToInflux() {
InfluxDbNotifierConfig instance
= InfluxDbNotifierConfig.fromGlobalConfig("", "", branch);
assertEquals(ignoreSendingTestResultsToInflux, instance.getIgnoreSendingTestCoverageToInflux());
assertEquals(ignoreSendingTestCoverageToInflux, instance.getIgnoreSendingTestCoverageToInflux());
}

@Test
Expand Down