Skip to content

Commit

Permalink
Update helper.spec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Dexus authored Oct 26, 2018
1 parent 174faaf commit 8e8457c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/helper.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('helper.js tests', function () {
helper.createPasswordFile(
{},
['pkcs12', '-info', '-in', bufferOrPath, '-noout', '-maciter', '-nodes'],
tmpfiles[tmpfiles.length]
tmpfiles
)
helper.deleteTempFiles(tmpfiles, function (fsErr) {
hlp.checkError(fsErr)
Expand All @@ -29,7 +29,7 @@ describe('helper.js tests', function () {
helper.createPasswordFile(
{ cipher: '', bla: true, blub: true },
['pkcs12', '-info', '-in', bufferOrPath, '-noout', '-maciter', '-nodes'],
tmpfiles[tmpfiles.length]
tmpfiles
)
helper.deleteTempFiles(tmpfiles, function (fsErr) {
hlp.checkError(fsErr)
Expand All @@ -42,7 +42,7 @@ describe('helper.js tests', function () {
helper.createPasswordFile(
{ cipher: '', password: 'gregegegeg', passType: 'in', mustPass: 'password' },
['pkcs12', '-info', '-in', bufferOrPath, '-noout', '-maciter', '-nodes'],
tmpfiles[tmpfiles.length]
tmpfiles
)
helper.deleteTempFiles(tmpfiles, function (fsErr) {
hlp.checkError(fsErr)
Expand Down

0 comments on commit 8e8457c

Please sign in to comment.