diff options
author | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-03-06 14:16:32 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@rtspecialty.com> | 2018-03-06 14:16:32 -0500 |
commit | afc1a2038a5061dba320821d7b9d294d3db46c46 (patch) | |
tree | 2a689b53966f82cc28683d365aa1bc0ab231c262 /progtest | |
parent | 0d169ea9ebc35653805228e8af3cc3966ac93e05 (diff) | |
download | tame-afc1a2038a5061dba320821d7b9d294d3db46c46.tar.gz tame-afc1a2038a5061dba320821d7b9d294d3db46c46.tar.bz2 tame-afc1a2038a5061dba320821d7b9d294d3db46c46.zip |
progtest: Suppress terminating classifications during const runv2.11.2
Terminating classifications will occur any time there is actual data
validation, since we're passing no data at all.
* progtest/src/env.js (common): Pass argument to program#rater to suppress
terminating classifications.
Diffstat (limited to 'progtest')
-rw-r--r-- | progtest/src/env.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progtest/src/env.js b/progtest/src/env.js index 78a97ec..8b6c9ec 100644 --- a/progtest/src/env.js +++ b/progtest/src/env.js @@ -69,7 +69,7 @@ module.exports = { // XXX: work around issue with consts not being initialized ahead of // time (initialized during actual rating...!) - program.rater( {} ); + program.rater( {}, false ); return yaml => new Promise( ( resolve, reject ) => { |