Update contracts/utils/test/reentrancy_guard.ts

Co-Authored-By: Lawrence Forman <lawrence@0xproject.com>
This commit is contained in:
James Towle
2019-07-30 09:51:31 -07:00
committed by Alex Towle
parent 4d39892a11
commit f044f364cb

View File

@@ -34,7 +34,7 @@ describe('ReentrancyGuard', () => {
});
it('should succeed if reentrancy does not occur', async () => {
expect(guard.guarded.sendTransactionAsync(false)).to.be.fulfilled; // tslint:disable-line:no-unused-expression
return expect(guard.guarded.sendTransactionAsync(false)).to.be.fulfilled('');
});
});
});