Skip to content

Commit 4274b7c

Browse files
committed
[Tests] clean up linting
1 parent de3ce83 commit 4274b7c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ test('HashBase#update', function (t) {
115115
})
116116

117117
t.test('data length is more than 2^32 bits', function (t) {
118-
t.base._length = [ Math.pow(2, 32) - 1, 0, 0, 0 ]
118+
t.base._length = [Math.pow(2, 32) - 1, 0, 0, 0]
119119
t.base.update(Buffer.allocUnsafe(1))
120-
t.same(t.base._length, [ 7, 1, 0, 0 ])
120+
t.same(t.base._length, [7, 1, 0, 0])
121121
t.end()
122122
})
123123

0 commit comments

Comments
 (0)