Skip to content

Commit

Permalink
Fix: Test fixture structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Stramel committed Feb 12, 2018
1 parent 81424c1 commit d2af88e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions test/paper-input-char-counter.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<test-fixture id="counter">
<template>
<paper-input-container>
<label id="l">label</label>
<label id="l" slot="label">label</label>
<input id="i" value="foobar" slot="input">
<paper-input-char-counter id="c" slot="add-on"></paper-input-char-counter>
</paper-input-container>
Expand All @@ -43,7 +43,7 @@
<test-fixture id="counter-with-max">
<template>
<paper-input-container>
<label id="l">label</label>
<label id="l" slot="label">label</label>
<input id="i" value="foobar" maxlength="10" slot="input">
<paper-input-char-counter id="c" slot="add-on"></paper-input-char-counter>
</paper-input-container>
Expand Down
12 changes: 6 additions & 6 deletions test/paper-input-container.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<test-fixture id="prefix-1">
<template>
<paper-input-container>
<div prefix>$</div>
<div slot="prefix">$</div>
<label slot="label" id="l">label</label>
<input is="iron-input" slot="input" id="i">
</paper-input-container>
Expand All @@ -51,7 +51,7 @@
<test-fixture id="prefix-2">
<template>
<paper-input-container>
<div prefix>$</div>
<div slot="prefix">$</div>
<label slot="label" id="l">label</label>
<iron-input slot="input" id="i">
<input>
Expand All @@ -63,7 +63,7 @@
<test-fixture id="prefix-has-value-1">
<template>
<paper-input-container>
<div prefix>$</div>
<div slot="prefix">$</div>
<label slot="label" id="l">label</label>
<input is="iron-input" slot="input" id="i" bind-value="foo">
</paper-input-container>
Expand All @@ -73,7 +73,7 @@
<test-fixture id="prefix-has-value-2">
<template>
<paper-input-container>
<div prefix>$</div>
<div slot="prefix">$</div>
<label slot="label" id="l">label</label>
<iron-input slot="input" id="i" bind-value="foo">
<input>
Expand Down Expand Up @@ -152,15 +152,15 @@
<test-fixture id="required-validate-1">
<template>
<paper-input-container>
<label id="l">label</label>
<label id="l" slot="label">label</label>
<input is="iron-input" id="i" slot="input" required>
</paper-input-container>
</template>
</test-fixture>
<test-fixture id="required-validate-2">
<template>
<paper-input-container>
<label id="l">label</label>
<label id="l" slot="label">label</label>
<iron-input id="i" slot="input">
<input required>
</iron-input>
Expand Down

0 comments on commit d2af88e

Please sign in to comment.