From 6bcba878fdbf9f80a3156605b0b52f38deb4feb4 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 26 Feb 2025 09:31:25 +0100 Subject: [PATCH] Fix test --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 279b1b7..0a4f36a 100644 --- a/test/test.js +++ b/test/test.js @@ -327,7 +327,7 @@ describe('Application life cycle test', function () { it('can send message', sendMessage); it('can get app info', getAppInfo); - it('can restart app', function () { execSync(`cloudron restart ${app.id}`); }); + it('can restart app', function () { execSync(`cloudron restart --app ${app.id}`); }); it('backup app', function () { execSync(`cloudron backup create --app ${app.id}`, EXEC_ARGS); });