Skip to content

Commit

Permalink
Revert "Fix for IE11 viewHelper test failures - issue walmartlabs#298"
Browse files Browse the repository at this point in the history
This reverts commit 7870d4f.
  • Loading branch information
solidgoldpig committed Jan 7, 2014
1 parent 7870d4f commit 0e47938
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/src/helpers/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ describe('view helper', function() {
]
});
parent.render();
expect(parent.el.innerText.replace(/\r\n/g, '')).to.equal('ab');
expect(parent.el.innerText).to.equal('ab');
});

it('child views within #each with mutation', function() {
Expand All @@ -148,11 +148,11 @@ describe('view helper', function() {
]
});
parent.render();
expect(parent.el.innerText.replace(/\r\n/g, '')).to.equal('abc');
expect(parent.el.innerText).to.equal('abc');

parent.views.splice(1, 1);
parent.render();
expect(parent.el.innerText.replace(/\r\n/g, '')).to.equal('ac');
expect(parent.el.innerText).to.equal('ac');
});

it("template passed to constructor and view block", function() {
Expand Down

0 comments on commit 0e47938

Please sign in to comment.