diff --git a/test/test.js b/test/test.js index 6713668..254d446 100755 --- a/test/test.js +++ b/test/test.js @@ -155,8 +155,7 @@ describe('Application life cycle test', function () { function pushFile() { const env = Object.create(process.env); env.GIT_SSH = __dirname + '/git_ssh_wrapper.sh'; - const defaultBranch = app.manifest.version === '1.24.0' ? 'main' : 'master'; - execSync(`touch newfile && git add newfile && git commit -a -mx && git push ssh://git@${app.fqdn}:${SSH_PORT}/${username}/${reponame} ${defaultBranch}`, + execSync(`touch newfile && git add newfile && git commit -a -mx && git push ssh://git@${app.fqdn}:${SSH_PORT}/${username}/${reponame} main`, { env: env, cwd: repodir }); fs.rmSync(repodir, { recursive: true, force: true }); }