From c0ad6bb378d05ae877d87b9192bdc921088e6d84 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Mon, 31 Jul 2017 16:31:19 -0700 Subject: [PATCH] joyent/node-triton#219 test: Fix test suite to not use non-existant `triton img rm -w` wait option --- test/integration/helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/helpers.js b/test/integration/helpers.js index 187ce2a..e091dda 100644 --- a/test/integration/helpers.js +++ b/test/integration/helpers.js @@ -468,7 +468,7 @@ function deleteTestImg(t, imgNameOrId, cb) { } } else { var imgToRm = JSON.parse(stdout); - safeTriton(t, ['img', 'rm', '-w', imgToRm.id], function onRm() { + safeTriton(t, ['img', 'rm', '-f', imgToRm.id], function onRm() { t.ok(true, 'deleted img ' + imgToRm.id); cb(); });