fixes typo

This commit is contained in:
Zachary Boyd 2018-08-10 11:58:48 -04:00
parent 82d0e48df5
commit 1f822af2bd

View file

@ -160,7 +160,7 @@ describe('TorPool', function () {
let def_clone = _.extend({}, i.definition);
delete def_clone.Config.DataDirectory;
return def_clone;
}).sort(function(a,b) {return (a.Name > b.Name) ? 1 : ((b.Name > a.Name) ? -1 : 0);});
}).sort(function(a,b) {return (a.Name > b.Name) ? 1 : ((b.Name > a.Name) ? -1 : 0);}));
});
it('the created instances should have the same config properties specified in the definiton', function (done) {