diff --git a/package.json b/package.json index 7fb970d2ed8..1abff9c9109 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "express": "^4.5.0", "finalhandler": "^0.4.0", "github": "^0.2.3", - "glimmer-engine": "tildeio/glimmer#2caafc3", + "glimmer-engine": "tildeio/glimmer#431b006", "glob": "^5.0.13", "htmlbars": "0.14.24", "mocha": "^2.4.5", diff --git a/packages/ember-glimmer/tests/integration/input-test.js b/packages/ember-glimmer/tests/integration/input-test.js index bca6d079a9c..80508a7aa72 100644 --- a/packages/ember-glimmer/tests/integration/input-test.js +++ b/packages/ember-glimmer/tests/integration/input-test.js @@ -41,7 +41,7 @@ moduleFor('Input element tests', class extends RenderingTest { this.runPropertyTest('value', ['foo', 'bar']); } - ['@htmlbars input placeholder attribute']() { + ['@test input placeholder attribute']() { this.runAttributeTest('placeholder', ['foo', 'bar']); } @@ -49,7 +49,7 @@ moduleFor('Input element tests', class extends RenderingTest { this.runAttributeTest('name', ['nam', 'name']); } - ['@htmlbars input maxlength attribute']() { + ['@test input maxlength attribute']() { this.runAttributeTest('maxlength', [2, 3]); } @@ -57,7 +57,7 @@ moduleFor('Input element tests', class extends RenderingTest { this.runAttributeTest('size', [2, 3]); } - ['@htmlbars input tabindex attribute']() { + ['@test input tabindex attribute']() { this.runAttributeTest('tabindex', [2, 3]); }