Skip to content

Commit

Permalink
Reflect preprocessing API changes in the test suite:
Browse files Browse the repository at this point in the history
- change calls from `onFinishPreprocessing` to `finishPreprocessing`
  • Loading branch information
p-flock committed Jan 16, 2020
1 parent 71ecfec commit d324b7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/suite/computations-share.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ baseComputations.preprocess = function (jiff_instance, test, inputs, testParalle
}

return new Promise(function (resolve) {
jiff_instance.onFinishPreprocessing(function () {
jiff_instance.finishPreprocessing(function () {
baseComputations.preprocess_done(test);
resolve();
});
Expand Down
2 changes: 1 addition & 1 deletion tests/suite/computations.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ exports.preprocess = function (jiff_instance, test, inputs, testParallel, testCo
preprocessingParams['id_list'], preprocessingParams['open_params']);

return new Promise(function (resolve) {
jiff_instance.onFinishPreprocessing(function () {
jiff_instance.finishPreprocessing(function () {
exports.preprocess_done(test);
resolve();
});
Expand Down

0 comments on commit d324b7d

Please sign in to comment.