Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
fixed long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelw committed Jan 14, 2014
1 parent db4a055 commit 2de2db3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tests/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,8 @@ suite('PolymerExpressions', function() {
then(function() {
var tbody = div.firstChild.nextSibling.firstChild;
assert.strictEqual('id:Tim', tbody.childNodes[1].firstChild.textContent);
assert.strictEqual('id:Sally', tbody.childNodes[2].firstChild.textContent);
assert.strictEqual('id:Sally',
tbody.childNodes[2].firstChild.textContent);

done();
});
Expand Down Expand Up @@ -638,7 +639,8 @@ suite('PolymerExpressions', function() {
recursivelySetTemplateModel(div, model);

then(function() {
assert.strictEqual('true:false:true:false', div.childNodes[1].textContent);
assert.strictEqual('true:false:true:false',
div.childNodes[1].textContent);

model.a.b = 1;
model.d = -5;
Expand Down Expand Up @@ -667,13 +669,15 @@ suite('PolymerExpressions', function() {
recursivelySetTemplateModel(div, model);

then(function() {
assert.strictEqual('true:false:false:false', div.childNodes[1].textContent);
assert.strictEqual('true:false:false:false',
div.childNodes[1].textContent);

model.a.b = 3;
model.e = {};

}).then(function() {
assert.strictEqual('false:true:false:true', div.childNodes[1].textContent);
assert.strictEqual('false:true:false:true',
div.childNodes[1].textContent);

done();
});
Expand Down

0 comments on commit 2de2db3

Please sign in to comment.