fix checkAddons usage

This commit is contained in:
Girish Ramakrishnan 2016-04-26 10:34:26 -07:00
parent d78ea63427
commit b7a6300658
5 changed files with 9 additions and 9 deletions

View File

@ -77,7 +77,7 @@ describe('Application flow test', function () {
});
it('can check the addons', function () {
cloudron.checkAddons(location, owner);
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
it('can reboot the cloudron', function () {
@ -85,7 +85,7 @@ describe('Application flow test', function () {
});
it('can check the addons', function () {
cloudron.checkAddons(location, owner);
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
it('can uninstall app', function () {

View File

@ -99,7 +99,7 @@ describe('Cloudron backup testing', function () {
});
it('can check the addons', function () {
cloudron.checkAddons(location, owner);
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
it('can uninstall app', function () {

View File

@ -93,7 +93,7 @@ describe('Cloudron update testing', function () {
});
it('can check the addons', function () {
cloudron.checkAddons(location, owner);
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
it('can update to new version', function () {
@ -107,7 +107,7 @@ describe('Cloudron update testing', function () {
});
it('can check the addons', function () {
cloudron.checkAddons(location, owner);
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
it('can uninstall app', function () {

View File

@ -93,7 +93,7 @@ describe('Cloudron update testing', function () {
});
it('can check the addons', function () {
cloudron.checkAddons(location, owner);
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
it('can update to new version', function () {
@ -107,7 +107,7 @@ describe('Cloudron update testing', function () {
});
it('can check the addons', function () {
cloudron.checkAddons(location, owner);
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
it('can uninstall app', function () {

View File

@ -138,7 +138,7 @@ describe('Custom domain test', function () {
});
it('can check the addons', function () {
cloudron.checkAddons(location, owner);
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
it('can reboot the cloudron', function () {
@ -146,7 +146,7 @@ describe('Custom domain test', function () {
});
it('can check the addons', function () {
cloudron.checkAddons(location, owner);
cloudron.checkAddons(cloudron.appFqdn(location), owner);
});
it('can uninstall app', function () {