diff --git a/test/index.js b/test/index.js index f68db30..7f92518 100644 --- a/test/index.js +++ b/test/index.js @@ -211,12 +211,12 @@ test('ensure run and exec with command defined as array are working', async asse assert.true(await isContainerRunning('/compose_test_nginx')); - let std = await compose.exec('db', ['/bin/sh', '-c', 'cat /etc/os-release'], opts); + let std = await compose.exec('db', [ '/bin/sh', '-c', 'cat /etc/os-release' ], opts); assert.false(std.err); checkOSID(std.out, 'debian'); - std = await compose.run('alpine', ['/bin/sh', '-c', 'cat /etc/os-release'], opts); + std = await compose.run('alpine', [ '/bin/sh', '-c', 'cat /etc/os-release' ], opts); assert.false(std.err); checkOSID(std.out, 'alpine');