Fix linting

This commit is contained in:
Eduardo Weiland 2019-07-09 15:46:16 -03:00
parent 5bd54c3049
commit 1aefb96986
No known key found for this signature in database
GPG key ID: 52F01882A0EAA2E5

View file

@ -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');