Skip to content

Commit

Permalink
test: fix uint8 array issue
Browse files Browse the repository at this point in the history
  • Loading branch information
uetchy committed Aug 20, 2016
1 parent 0f86fb6 commit 9233bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ test.cb('should create icns', t => {
iconFiles()
.pipe(iconutil(icnsName))
.pipe(streamAssert.first(data => {
t.deepEqual(data.contents, expected)
t.is(data.contents.toString(), expected.toString())
t.is(data.relative, icnsName)
}))
.pipe(streamAssert.end(t.end))
Expand Down

0 comments on commit 9233bcd

Please sign in to comment.