Fix many spelling errors (#3274)
This commit is contained in:
@ -47,7 +47,7 @@ function split (signature) {
|
||||
web3.utils.bytesToHex(raw.slice(32, 64)), // s
|
||||
];
|
||||
default:
|
||||
expect.fail('Invalid siganture length, cannot split');
|
||||
expect.fail('Invalid signature length, cannot split');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -69,7 +69,7 @@ contract('DoubleEndedQueue', function (accounts) {
|
||||
describe('push', function () {
|
||||
it('front', async function () {
|
||||
await this.deque.pushFront(bytesD);
|
||||
this.content.unshift(bytesD); // add element at the begining
|
||||
this.content.unshift(bytesD); // add element at the beginning
|
||||
|
||||
expect(await getContent(this.deque)).to.have.ordered.members(this.content);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user