Skip to content

Commit

Permalink
Fixing UI tests (#20386)
Browse files Browse the repository at this point in the history
Fixing tests as we're not calling env.var, we're using a property on the env service
  • Loading branch information
chris-hut authored Jan 29, 2024
1 parent 48d1b05 commit 64a4610
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
Expand Down

0 comments on commit 64a4610

Please sign in to comment.