Skip to content

Commit

Permalink
Fix incorrect call to assertAbove.
Browse files Browse the repository at this point in the history
😢
  • Loading branch information
rwjblue committed May 9, 2017
1 parent b46eb48 commit f206486
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ember-addon-main.js
Expand Up @@ -13,13 +13,13 @@ module.exports = {

let checker = new VersionChecker(this);
let dep = this.emberCLIDep = checker.for('ember-cli', 'npm');
dep.assertAbove(this, '0.1.2');
dep.assertAbove('0.1.2');
},

parentRegistry: null,

shouldSetupRegistryInIncluded: function() {
return !this.emberCLIDep.isAbove(this, '0.2.0');
return !this.emberCLIDep.isAbove('0.2.0');
},

setupPreprocessorRegistry: function(type, registry) {
Expand Down

0 comments on commit f206486

Please sign in to comment.