Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 58fad18

Browse files
Bad math fix (I'm extremely sorry for the number of commit on this PR)
1 parent 0bc208a commit 58fad18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/list-spec.coffee

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ describe 'apm list', ->
110110

111111
listPackages ['--enabled'], ->
112112
expect(console.log.argsForCall[1][0]).toContain '[email protected]'
113-
expect(console.log.argsForCall[3][0]).toContain '[email protected]'
114-
expect(console.log.argsForCall[6][0]).toContain '[email protected]'
115-
expect(console.log.argsForCall[9][0]).toContain '[email protected]'
113+
expect(console.log.argsForCall[4][0]).toContain '[email protected]'
114+
expect(console.log.argsForCall[7][0]).toContain '[email protected]'
115+
expect(console.log.argsForCall[10][0]).toContain '[email protected]'
116116

117117
it 'lists packages in json format when --json is passed', ->
118118
listPackages ['--json'], ->

0 commit comments

Comments
 (0)