Skip to content

Commit b4c4867

Browse files
author
platfowner
authored
Merge pull request #95 from gmlee329/develop
add line break in integration.test.js#L439
2 parents 9276c92 + d6639ef commit b4c4867

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration/integration.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,8 @@ describe('Integration Tests', () => {
436436
for (let j = 0; j < len; j++) {
437437
const block = blocks[j];
438438
if (block.hash !== hashBlock(block)) {
439-
assert.fail(`Block hash is incorrect for block ${JSON.stringify(block, null, 2)}\n(hash: ${hashBlock(block)}, node ${i})`);
439+
assert.fail(`Block hash is incorrect for block ${JSON.stringify(block, null, 2)}` +
440+
`\n(hash: ${hashBlock(block)}, node ${i})`);
440441
}
441442
if (block.transactions_hash !== hashString(stringify(block.transactions))) {
442443
assert.fail(`Transactions or transactions_hash is incorrect for block ${block.hash}`);

0 commit comments

Comments
 (0)