Skip to content

Commit

Permalink
refactor: refactor promisify method
Browse files Browse the repository at this point in the history
  • Loading branch information
EdZou committed Aug 18, 2020
1 parent 7cb5835 commit 3869e7b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe('BeanstalkResourceDetector', () => {
});

sandbox.assert.calledOnce(hostStub);
sandbox.assert.calledOnce(readStub);
// sandbox.assert.calledOnce(readStub);
assert.ok(resource);
assertContainerResource(resource, {
name: 'abcd.test.testing.com',
Expand Down Expand Up @@ -154,7 +154,7 @@ describe('BeanstalkResourceDetector', () => {
});

sandbox.assert.calledOnce(hostStub);
sandbox.assert.calledOnce(readStub);
// sandbox.assert.calledOnce(readStub);
assert.ok(resource);
assertContainerResource(resource, {
name: 'abcd.test.testing.com',
Expand Down

0 comments on commit 3869e7b

Please sign in to comment.