From 1aefb96986441463b56f3eb20881c66e3f79b4e3 Mon Sep 17 00:00:00 2001 From: Eduardo Weiland Date: Tue, 9 Jul 2019 15:46:16 -0300 Subject: [PATCH] Fix linting --- test/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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');