Skip to content

Commit 7389874

Browse files
committed
test: pass callback to configure
1 parent defa9fa commit 7389874

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test-configure-python.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test('configure PYTHONPATH with no existing env', function (t) {
2828
t.equal(process.env.PYTHONPATH, EXPECTED_PYPATH)
2929
return SPAWN_RESULT
3030
}
31-
configure(prog, [])
31+
configure(prog, [], t.fail)
3232
})
3333

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

4949
return SPAWN_RESULT
5050
}
51-
configure(prog, [])
51+
configure(prog, [], t.fail)
5252
})
5353

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

7171
return SPAWN_RESULT
7272
}
73-
configure(prog, [])
73+
configure(prog, [], t.fail)
7474
})

0 commit comments

Comments
 (0)