Skip to content

Commit

Permalink
test: pass callback to configure
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlau committed Feb 27, 2017
1 parent defa9fa commit 7389874
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test-configure-python.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ test('configure PYTHONPATH with no existing env', function (t) {
t.equal(process.env.PYTHONPATH, EXPECTED_PYPATH)
return SPAWN_RESULT
}
configure(prog, [])
configure(prog, [], t.fail)
})

test('configure PYTHONPATH with existing env of one dir', function (t) {
Expand All @@ -48,7 +48,7 @@ test('configure PYTHONPATH with existing env of one dir', function (t) {

return SPAWN_RESULT
}
configure(prog, [])
configure(prog, [], t.fail)
})

test('configure PYTHONPATH with existing env of multiple dirs', function (t) {
Expand All @@ -70,5 +70,5 @@ test('configure PYTHONPATH with existing env of multiple dirs', function (t) {

return SPAWN_RESULT
}
configure(prog, [])
configure(prog, [], t.fail)
})

0 comments on commit 7389874

Please sign in to comment.