Fixing UI tests (#20386)

Fixing tests as we're not calling env.var, we're using a property on the env service
This commit is contained in:
Chris Hut 2024-01-29 13:58:15 -08:00 committed by GitHub
parent 48d1b059d2
commit 64a46105ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions

View File

@ -100,9 +100,8 @@ module('Integration | Component | link-to-hcp-banner', function (hooks) {
this.owner.register(
'service:env',
class Stub extends EnvStub {
stubEnv = {
isEnterprise: true,
};
stubEnv = {};
isEnterprise = true;
}
);
this.linkData = { isLinked: false };