Skip to content

Commit 32916e6

Browse files
authoredFeb 26, 2018
small refactor
1 parent b9f79b0 commit 32916e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/TimeLockedWalletTest.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ contract('TimeLockedWallet', (accounts) => {
5757
assert(ethToSend == await web3.eth.getBalance(timeLockedWallet.address));
5858
});
5959

60-
it("Other then owner cannot withdraw funds after the unlock date", async () => {
60+
it("Nobody other than the owner can withdraw funds after the unlock date", async () => {
6161
//set unlock date in unix epoch to now
6262
let now = Math.floor((new Date).getTime() / 1000);
6363

@@ -106,7 +106,7 @@ contract('TimeLockedWallet', (accounts) => {
106106
assert(balance.toNumber() == amountOfTokens);
107107
});
108108

109-
it("Allow to get info about wallet", async () => {
109+
it("Allow getting info about the wallet", async () => {
110110
// Remember current time.
111111
let now = Math.floor((new Date).getTime() / 1000);
112112
// Set unlockDate to future time.

0 commit comments

Comments
 (0)
Please sign in to comment.