Making tests green

This commit is contained in:
Javier Cervantes 2014-04-24 09:41:51 -05:00
parent 40b3db1dce
commit e5400341d0
1 changed files with 1 additions and 4 deletions

View File

@ -12,10 +12,7 @@ describe("API", function() {
beforeEach(function() {
stub(https, 'createServer').returns({ listen: spy() });
opts = {
master: { name: 'master' },
ssl: true
}
opts = { master: { name: 'master' } }
api = new API(opts);
});