Consensys / Tokens

Ethereum Token Contracts
MIT License
2.06k stars 1.2k forks source link

Add missing awaits in tests #93

Closed skmgoldin closed 6 years ago

skmgoldin commented 6 years ago

A few async functions were not being properly awaited. This caused race conditions in the tests. The code under test was correct.

skmgoldin commented 6 years ago

Also in this PR, expectThrow is a blocking function and doesn't need to be awaited. So I removed those awaits.