Skip to content

Commit

Permalink
fix(xod-tabtest): fix wrong typing (by evgenykochetkov)
Browse files Browse the repository at this point in the history
  • Loading branch information
knopki committed Oct 30, 2018
1 parent 6f35052 commit 0c98824
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/xod-tabtest/src/Tabtest.re
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,10 @@ let generatePatchSuite = (project, patchPathToTest) : XResult.t(t) => {
| (Some(patchUnderTest), Some(tsv)) =>
let bench = Bench.create(project, patchUnderTest);
let probes = bench.probes;
let benchPatchPath = "tabtest-" ++ patchPathToTest;
let benchPatchPath =
"tabtest-" ++ patchPathToTest
/* to convert "tabtest-@/foo" to "tabtest/local/foo" */
|> Js.String.replace("-@", "/local");
let safeBasename =
PatchPath.getBaseName(patchPathToTest)
|> Js.String.replace("(", "__")
Expand Down

0 comments on commit 0c98824

Please sign in to comment.