This is an automated email from the ASF dual-hosted git repository. rabbah pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/openwhisk-runtime-nodejs.git
commit 55cb5ae6419756aa5c9d5595c4783473683de86d Author: Rodric Rabbah <[email protected]> AuthorDate: Wed May 13 10:27:35 2020 -0400 Remove link. Fix path to test. --- tests/build.gradle | 2 +- .../scala/runtime/actionContainers/NodeJsActionContainerTests.scala | 2 +- tests/tests/dat | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/build.gradle b/tests/build.gradle index bdb648e..1dc2da8 100644 --- a/tests/build.gradle +++ b/tests/build.gradle @@ -44,7 +44,7 @@ tasks.withType(ScalaCompile) { } task buildArtifacts(type:Exec) { - workingDir 'tests/dat/actions' + workingDir 'dat/actions' commandLine './build.sh' } diff --git a/tests/src/test/scala/runtime/actionContainers/NodeJsActionContainerTests.scala b/tests/src/test/scala/runtime/actionContainers/NodeJsActionContainerTests.scala index 1f58fcb..2c94e82 100644 --- a/tests/src/test/scala/runtime/actionContainers/NodeJsActionContainerTests.scala +++ b/tests/src/test/scala/runtime/actionContainers/NodeJsActionContainerTests.scala @@ -831,7 +831,7 @@ abstract class NodeJsActionContainerTests extends BasicActionRunnerTests with Ws } it should "use user provided npm packages in a zip file" in { - val zipPath = new File("tests/dat/actions/nodejs-test.zip").toPath + val zipPath = new File("dat/actions/nodejs-test.zip").toPath val code = ResourceHelpers.readAsBase64(zipPath) withNodeJsContainer { c => c.init(initPayload(code))._1 should be(200) diff --git a/tests/tests/dat b/tests/tests/dat deleted file mode 120000 index 735ed3b..0000000 --- a/tests/tests/dat +++ /dev/null @@ -1 +0,0 @@ -../dat \ No newline at end of file
