Skip to content

Commit

Permalink
Fix test offset
Browse files Browse the repository at this point in the history
  • Loading branch information
Ondrej Zizka committed Aug 21, 2024
1 parent ec8561e commit aa6d48d
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ class OptionsCombinationsTest {
fun combineInputFile() {
val command = //"--json=entries" +
" | --rowNumbers" +
" | --combineInputs" +
" | -in | src/test/data/eapBuilds.csv" +
" | -out | target/testResults/combineInputFile.csv" +
" | -sql | SELECT jobName, buildNumber, config, ar, arFile, deployDur, warmupDur, scale," +
" CAST(warmupDur AS DOUBLE) / CAST(deployDur AS DOUBLE) AS warmupSlower" +
" FROM eapBuilds ORDER BY deployDur"
" | --combineInputs" +
" | -in | src/test/data/eapBuilds.csv" +
" | -out | target/testResults/combineInputFile.csv" +
" | -sql | SELECT jobName, buildNumber, config, ar, arFile, deployDur, warmupDur, scale," +
" CAST(warmupDur AS DOUBLE) / CAST(deployDur AS DOUBLE) AS warmupSlower" +
" FROM eapBuilds ORDER BY deployDur"
CsvCruncherTestUtils.runCruncherWithArguments(command)
val resultCsv = Paths.get("target/testResults/combineInputFile.csv").toFile()
assertTrue(resultCsv.exists())
Expand Down

0 comments on commit aa6d48d

Please sign in to comment.