Fix linter errors

Change-Id: Ib67314574443758045830c332ff1871824867cfd
This commit is contained in:
Kasper Nilsson
2016-12-01 11:59:32 -08:00
parent deb7f68c4a
commit 4413904973
2 changed files with 3 additions and 2 deletions

View File

@@ -72,7 +72,8 @@ limitations under the License.
assert.equal(element._computeShowEmail(
false, undefined), false);
assert.equal(element._computeEmailStr({name: 'test', email: 'test'}), '(test)');
assert.equal(
element._computeEmailStr({name: 'test', email: 'test'}), '(test)');
assert.equal(element._computeEmailStr({email: 'test'}, ''), 'test');
});

View File

@@ -189,7 +189,7 @@ limitations under the License.
assert.equal(result[1].type, 'quote');
assert.lengthOf(result[1].blocks, 1);
assertBlock(result[1].blocks, 0, 'paragraph',
'Quote\nacross\nnot many lines.')
'Quote\nacross\nnot many lines.');
assertBlock(result, 2, 'paragraph', 'Another paragraph');
assertListBlock(result, 3, 0, 'Series');