Skip to content

Commit

Permalink
Fix test to use lowercase attribute names
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Dec 14, 2018
1 parent f5f95e1 commit 383510e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/test/lit-element_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,21 +381,21 @@ suite('LitElement', () => {
el.removeAttribute('str');
el.removeAttribute('obj');
el.removeAttribute('arr');
el.removeAttribute('reflectBool');
el.removeAttribute('reflectNum');
el.removeAttribute('reflectStr');
el.removeAttribute('reflectObj');
el.removeAttribute('reflectArr');
el.removeAttribute('defaultBool');
el.removeAttribute('defaultNum');
el.removeAttribute('defaultStr');
el.removeAttribute('defaultObj');
el.removeAttribute('defaultArr');
el.removeAttribute('defaultReflectBool');
el.removeAttribute('defaultReflectNum');
el.removeAttribute('defaultReflectStr');
el.removeAttribute('defaultReflectObj');
el.removeAttribute('defaultReflectArr');
el.removeAttribute('reflectbool');
el.removeAttribute('reflectnum');
el.removeAttribute('reflectstr');
el.removeAttribute('reflectobj');
el.removeAttribute('reflectarr');
el.removeAttribute('defaultbool');
el.removeAttribute('defaultnum');
el.removeAttribute('defaultstr');
el.removeAttribute('defaultobj');
el.removeAttribute('defaultarr');
el.removeAttribute('defaultreflectbool');
el.removeAttribute('defaultreflectnum');
el.removeAttribute('defaultreflectstr');
el.removeAttribute('defaultreflectobj');
el.removeAttribute('defaultreflectarr');
await el.updateComplete;
assert.equal(el.bool, false);
assert.equal(el.num, null);
Expand Down

0 comments on commit 383510e

Please sign in to comment.