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

Commit ed4988d

Browse files
author
Alan Shaw
authored
fix: use the correct option name for files.ls long (#502)
License: MIT Signed-off-by: Alan Shaw <alan@tableflip.io>
1 parent 97ed794 commit ed4988d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/files-mfs/ls-pull-stream.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ module.exports = (createCommon, options) => {
7171
})
7272
})
7373

74-
it('should ls -l directory', (done) => {
74+
it('should ls directory with long option', (done) => {
7575
const testDir = `/test-${hat()}`
7676

7777
series([
@@ -81,7 +81,7 @@ module.exports = (createCommon, options) => {
8181
expect(err).to.not.exist()
8282

8383
pull(
84-
ipfs.files.lsPullStream(testDir, { l: true }),
84+
ipfs.files.lsPullStream(testDir, { long: true }),
8585
collect((err, entries) => {
8686
expect(err).to.not.exist()
8787
expect(entries.sort((a, b) => a.name.localeCompare(b.name))).to.eql([

src/files-mfs/ls-readable-stream.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ module.exports = (createCommon, options) => {
6969
})
7070
})
7171

72-
it('should ls -l directory', (done) => {
72+
it('should ls directory with long option', (done) => {
7373
const testDir = `/test-${hat()}`
7474

7575
series([
@@ -78,7 +78,7 @@ module.exports = (createCommon, options) => {
7878
], (err) => {
7979
expect(err).to.not.exist()
8080

81-
const stream = ipfs.files.lsReadableStream(testDir, { l: true })
81+
const stream = ipfs.files.lsReadableStream(testDir, { long: true })
8282

8383
let entries = []
8484

src/files-mfs/ls.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ module.exports = (createCommon, options) => {
6262
})
6363
})
6464

65-
it('should ls -l directory', (done) => {
65+
it('should ls directory with long option', (done) => {
6666
const testDir = `/test-${hat()}`
6767

6868
series([
@@ -71,7 +71,7 @@ module.exports = (createCommon, options) => {
7171
], (err) => {
7272
expect(err).to.not.exist()
7373

74-
ipfs.files.ls(testDir, { l: true }, (err, info) => {
74+
ipfs.files.ls(testDir, { long: true }, (err, info) => {
7575
expect(err).to.not.exist()
7676
expect(info.sort((a, b) => a.name.localeCompare(b.name))).to.eql([
7777
{

0 commit comments

Comments
 (0)