Skip to content

Commit 770623c

Browse files
committed
reverted formatting
1 parent d19e809 commit 770623c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

labs/behaviors/constraint-validation_test.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66

77
// import 'jasmine'; (google3-only)
88

9-
import { LitElement, html } from 'lit';
10-
import { customElement, property } from 'lit/decorators.js';
9+
import {LitElement, html} from 'lit';
10+
import {customElement, property} from 'lit/decorators.js';
1111

1212
import {
1313
createValidator,
1414
getValidityAnchor,
1515
mixinConstraintValidation,
1616
} from './constraint-validation.js';
17-
import { mixinElementInternals } from './element-internals.js';
18-
import { getFormValue, mixinFormAssociated } from './form-associated.js';
19-
import { CheckboxValidator } from './validators/checkbox-validator.js';
20-
import { Validator } from './validators/validator.js';
21-
import { SelectState } from './validators/select-validator.js';
17+
import {mixinElementInternals} from './element-internals.js';
18+
import {getFormValue, mixinFormAssociated} from './form-associated.js';
19+
import {CheckboxValidator} from './validators/checkbox-validator.js';
20+
import {Validator} from './validators/validator.js';
21+
import {SelectState} from './validators/select-validator.js';
2222

2323
describe('mixinConstraintValidation()', () => {
2424
const baseClass = mixinConstraintValidation(
@@ -27,8 +27,8 @@ describe('mixinConstraintValidation()', () => {
2727

2828
@customElement('test-constraint-validation')
2929
class TestConstraintValidation extends baseClass {
30-
@property({ type: Boolean }) checked = false;
31-
@property({ type: Boolean }) required = false;
30+
@property({type: Boolean}) checked = false;
31+
@property({type: Boolean}) required = false;
3232

3333
override render() {
3434
return html`<div id="root"></div>`;

0 commit comments

Comments
 (0)