Skip to content

Commit

Permalink
Merge pull request #13810 from chadhietala/props-attributes
Browse files Browse the repository at this point in the history
[Glimmer2] Fix property setting
  • Loading branch information
krisselden committed Jul 12, 2016
2 parents 2981ecf + 0438278 commit 57bd9ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions packages/ember-glimmer/tests/integration/input-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,23 +41,23 @@ 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']);
}

['@test input name attribute']() {
this.runAttributeTest('name', ['nam', 'name']);
}

['@htmlbars input maxlength attribute']() {
['@test input maxlength attribute']() {
this.runAttributeTest('maxlength', [2, 3]);
}

['@test input size attribute']() {
this.runAttributeTest('size', [2, 3]);
}

['@htmlbars input tabindex attribute']() {
['@test input tabindex attribute']() {
this.runAttributeTest('tabindex', [2, 3]);
}

Expand Down

0 comments on commit 57bd9ba

Please sign in to comment.