Merge pull request #4173 from wooferguy/Inject-Node-Test-Fix

Invalid JSONata Inject node test passing condition
This commit is contained in:
Nick O'Leary 2023-05-22 11:26:38 +01:00 committed by GitHub
commit 2679ff277c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -854,7 +854,7 @@ describe('inject node', function() {
});
n1.on("call:error", function(err) {
count++;
if (count == 2) {
if (count == 1) {
done();
}
});