Ran prettier

This commit is contained in:
Alex Towle
2019-08-01 14:45:05 -07:00
parent e204a6d1d0
commit 9a35e2db77
2 changed files with 17 additions and 30 deletions

View File

@@ -1,10 +1,4 @@
import {
chaiSetup,
constants,
provider,
txDefaults,
web3Wrapper,
} from '@0x/contracts-test-utils';
import { chaiSetup, constants, provider, txDefaults, web3Wrapper } from '@0x/contracts-test-utils';
import { BlockchainLifecycle } from '@0x/dev-utils';
import { AuthorizableRevertErrors, BigNumber, OwnableRevertErrors } from '@0x/utils';
import * as chai from 'chai';
@@ -140,14 +134,18 @@ describe('Authorizable', () => {
);
const index = new BigNumber(1);
const expectedError = new AuthorizableRevertErrors.IndexOutOfBoundsError(index, constants.ZERO_AMOUNT);
const tx = authorizable.removeAuthorizedAddressAtIndex.sendTransactionAsync(address, index, { from: owner });
const tx = authorizable.removeAuthorizedAddressAtIndex.sendTransactionAsync(address, index, {
from: owner,
});
return expect(tx).to.revertWith(expectedError);
});
it('should revert if owner attempts to remove an address that is not authorized', async () => {
const index = new BigNumber(0);
const expectedError = new AuthorizableRevertErrors.TargetNotAuthorizedError(address);
const tx = authorizable.removeAuthorizedAddressAtIndex.sendTransactionAsync(address, index, { from: owner });
const tx = authorizable.removeAuthorizedAddressAtIndex.sendTransactionAsync(address, index, {
from: owner,
});
return expect(tx).to.revertWith(expectedError);
});
@@ -166,7 +164,9 @@ describe('Authorizable', () => {
);
const address1Index = new BigNumber(0);
const expectedError = new AuthorizableRevertErrors.AuthorizedAddressMismatchError(address1, address2);
const tx = authorizable.removeAuthorizedAddressAtIndex.sendTransactionAsync(address2, address1Index, { from: owner });
const tx = authorizable.removeAuthorizedAddressAtIndex.sendTransactionAsync(address2, address1Index, {
from: owner,
});
return expect(tx).to.revertWith(expectedError);
});

View File

@@ -4,21 +4,16 @@ import { RevertError } from './revert_error';
// tslint:disable:max-classes-per-file
export class AuthorizedAddressMismatchError extends RevertError {
constructor(authorized?: string, target?: string) {
super(
'AuthorizedAddressMismatchError',
'AuthorizedAddressMismatchError(address authorized, address target)',
{ authorized, target },
);
super('AuthorizedAddressMismatchError', 'AuthorizedAddressMismatchError(address authorized, address target)', {
authorized,
target,
});
}
}
export class IndexOutOfBoundsError extends RevertError {
constructor(index?: BigNumber, length?: BigNumber) {
super(
'IndexOutOfBoundsError',
'IndexOutOfBoundsError(uint256 index, uint256 length)',
{ index, length },
);
super('IndexOutOfBoundsError', 'IndexOutOfBoundsError(uint256 index, uint256 length)', { index, length });
}
}
@@ -30,21 +25,13 @@ export class SenderNotAuthorizedError extends RevertError {
export class TargetAlreadyAuthorizedError extends RevertError {
constructor(target?: string) {
super(
'TargetAlreadyAuthorizedError',
'TargetAlreadyAuthorizedError(address target)',
{ target },
);
super('TargetAlreadyAuthorizedError', 'TargetAlreadyAuthorizedError(address target)', { target });
}
}
export class TargetNotAuthorizedError extends RevertError {
constructor(target?: string) {
super(
'TargetNotAuthorizedError',
'TargetNotAuthorizedError(address target)',
{ target },
);
super('TargetNotAuthorizedError', 'TargetNotAuthorizedError(address target)', { target });
}
}