Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
remove default value for timeoutMs; default pollingIntervalMs is prov…
Browse files Browse the repository at this point in the history
…ided in web3wrapper
  • Loading branch information
xianny committed Oct 16, 2019
1 parent 805c9bc commit f3cf65e
Show file tree
Hide file tree
Showing 22 changed files with 203 additions and 203 deletions.
4 changes: 2 additions & 2 deletions contracts/utils/test/ownable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ describe('Ownable', () => {
});
});

describe.only('transferOwnership', () => {
describe('transferOwnership', () => {
it('should revert if the specified new owner is the zero address', async () => {
const expectedError = new OwnableRevertErrors.TransferOwnerToZeroError();
const tx = ownable.transferOwnership.sendTransactionAsync(constants.NULL_ADDRESS, { from: owner });
Expand All @@ -53,7 +53,7 @@ describe('Ownable', () => {
ownable.transferOwnership.awaitTransactionSuccessAsync(
nonOwner,
{ from: owner },
{ timeoutMs: constants.AWAIT_TRANSACTION_MINED_MS },
{ pollingIntervalMs: constants.AWAIT_TRANSACTION_MINED_MS },
),
).to.be.fulfilled('');
const updatedOwner = await ownable.owner.callAsync();
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions packages/abi-gen-wrappers/src/generated-wrappers/dev_utils.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f3cf65e

Please sign in to comment.