From 88113f7b61c494f0873f50de14fc9f224bf7437f Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Tue, 21 Feb 2017 10:04:29 -0800 Subject: [PATCH] Minor fixes to tests --- tools/run_tests/helper_scripts/pre_build_node.sh | 2 +- tools/run_tests/run_tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/run_tests/helper_scripts/pre_build_node.sh b/tools/run_tests/helper_scripts/pre_build_node.sh index e63be9da523..083cb2bc771 100755 --- a/tools/run_tests/helper_scripts/pre_build_node.sh +++ b/tools/run_tests/helper_scripts/pre_build_node.sh @@ -32,7 +32,7 @@ NODE_VERSION=$1 source ~/.nvm/nvm.sh -nvm use $NODE_VERSION +nvm install $NODE_VERSION set -ex export GRPC_CONFIG=${CONFIG:-opt} diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index d0ab5b2e7ca..0558360a987 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -422,7 +422,7 @@ class NodeLanguage(object): def build_steps(self): if self.platform == 'windows': - if config == 'dbg': + if self.config == 'dbg': config_flag = '--debug' else: config_flag = '--release'