terNO_LINE should never be the final result of a payment transaction that can claim a fee.

This commit is contained in:
JoelKatz
2013-11-08 10:32:15 -08:00
parent 46861fac48
commit f04b9131cc
2 changed files with 4 additions and 1 deletions

View File

@@ -702,7 +702,7 @@ suite('Gateway', function() {
.once('submitted', function (m) {
// console.log("submitted: %s", JSON.stringify(m));
callback(m.engine_result !== 'terNO_LINE');
callback(m.engine_result !== 'tecPATH_DRY');
})
.submit();
},