Skip to content

Commit

Permalink
Merge branch 'master' into Update_to_core2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leerho committed Feb 2, 2022
2 parents 36c6a5d + 1d9defb commit a8372b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions pom.xml
Expand Up @@ -92,7 +92,7 @@ under the License.
<!-- END:UNIQUE FOR THIS JAVA COMPONENT -->

<!-- Test -->
<testng.version>7.1.0</testng.version>
<testng.version>7.5</testng.version>

<!-- System-wide properties -->
<maven.version>3.5.0</maven.version>
Expand Down Expand Up @@ -128,7 +128,7 @@ under the License.
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
<!-- other -->
<lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>
<git-commit-id-plugin.version>3.0.0</git-commit-id-plugin.version>
<git-commit-id-maven-plugin.version>5.0.0</git-commit-id-maven-plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -489,9 +489,9 @@ under the License.
<pluginManagement>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<version>${git-commit-id-plugin.version}</version>
<groupId>io.github.git-commit-id</groupId>
<artifactId>git-commit-id-maven-plugin</artifactId>
<version>${git-commit-id-maven-plugin.version}</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -598,7 +598,7 @@ under the License.
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
<artifactId>git-commit-id-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
Expand Up @@ -79,13 +79,13 @@ public void checkNullCombinations() throws IOException {
} catch (SketchesArgumentException e) {}

//Both valid
inputTuple = TupleFactory.getInstance().newTuple(2);
Tuple inputTuple = TupleFactory.getInstance().newTuple(2);
inputTuple.set(0, createDbaFromQssRange(256, 0, 256));
inputTuple.set(1, createDbaFromQssRange(256, 0, 128));
resultTuple = aNbFunc.exec(inputTuple);
Tuple resultTuple = aNbFunc.exec(inputTuple);
assertNotNull(resultTuple);
assertEquals(resultTuple.size(), 1);
est = estFunc.exec(resultTuple);
Double est = estFunc.exec(resultTuple);
assertEquals(est, 128.0, 0.0);
}

Expand Down

0 comments on commit a8372b3

Please sign in to comment.