removing trailing whitespace

This commit is contained in:
Roy Blankman
2017-09-16 10:20:06 -04:00
parent 1737555b0d
commit 6d8bb497c8
45 changed files with 125 additions and 125 deletions

View File

@ -53,7 +53,7 @@ contract('PausableToken', function(accounts) {
it('should throw an error trying to transfer while transactions are paused', async function() {
await token.pause();
try {
try {
await token.transfer(accounts[1], 100);
assert.fail('should have thrown before');
} catch (error) {
@ -63,11 +63,11 @@ contract('PausableToken', function(accounts) {
it('should throw an error trying to transfer from another account while transactions are paused', async function() {
await token.pause();
try {
try {
await token.transferFrom(accounts[0], accounts[1], 100);
assert.fail('should have thrown before');
} catch (error) {
assertJump(error);
}
});
})
})