Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Commit

Permalink
test: now ipfs/kubo#5181 has been resolved we can expect consistent o…
Browse files Browse the repository at this point in the history
…rdering
  • Loading branch information
achingbrain committed Aug 2, 2018
1 parent ef72fa9 commit c62f36d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/files/ls.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ module.exports = (createCommon, options) => {
ipfs.files.ls(testDir, (err, info) => {
expect(err).to.not.exist()
expect(info).to.eql([
{ name: 'b', type: 0, size: 0, hash: '' },
{ name: 'lv1', type: 0, size: 0, hash: '' }
{ name: 'lv1', type: 0, size: 0, hash: '' },
{ name: 'b', type: 0, size: 0, hash: '' }
])
done()
})
Expand Down

0 comments on commit c62f36d

Please sign in to comment.