From 62b03b02d5d8e59b1f4be98571ad241f127e9833 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 3 Oct 2023 17:23:13 +0200 Subject: [PATCH] Fixup test --- test/test.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index a3feaff..5e56d3d 100755 --- a/test/test.js +++ b/test/test.js @@ -277,8 +277,7 @@ describe('Application life cycle test', function () { it('can install app', function () { execSync(`cloudron install --appstore-id ${app.manifest.id} --location ${LOCATION} -p SSH_PORT=${SSH_PORT}`, EXEC_ARGS); }); it('can get app information', getAppInfo); - // to be replaced with loginOIDC in the next release - it('can login', login.bind(null, username, password)); + it('can login', loginOIDC.bind(null, username, password)); it('can set avatar', setAvatar); it('can get avatar', checkAvatar); it('can add public key', addPublicKey);