From 770623cc926f7350287f1fd11934abc15a8c2421 Mon Sep 17 00:00:00 2001 From: christophe-g Date: Thu, 21 Dec 2023 20:53:04 +0100 Subject: [PATCH] reverted formatting --- labs/behaviors/constraint-validation_test.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/labs/behaviors/constraint-validation_test.ts b/labs/behaviors/constraint-validation_test.ts index 3d6eaa8ce7..5e73a5460c 100644 --- a/labs/behaviors/constraint-validation_test.ts +++ b/labs/behaviors/constraint-validation_test.ts @@ -6,19 +6,19 @@ // import 'jasmine'; (google3-only) -import { LitElement, html } from 'lit'; -import { customElement, property } from 'lit/decorators.js'; +import {LitElement, html} from 'lit'; +import {customElement, property} from 'lit/decorators.js'; import { createValidator, getValidityAnchor, mixinConstraintValidation, } from './constraint-validation.js'; -import { mixinElementInternals } from './element-internals.js'; -import { getFormValue, mixinFormAssociated } from './form-associated.js'; -import { CheckboxValidator } from './validators/checkbox-validator.js'; -import { Validator } from './validators/validator.js'; -import { SelectState } from './validators/select-validator.js'; +import {mixinElementInternals} from './element-internals.js'; +import {getFormValue, mixinFormAssociated} from './form-associated.js'; +import {CheckboxValidator} from './validators/checkbox-validator.js'; +import {Validator} from './validators/validator.js'; +import {SelectState} from './validators/select-validator.js'; describe('mixinConstraintValidation()', () => { const baseClass = mixinConstraintValidation( @@ -27,8 +27,8 @@ describe('mixinConstraintValidation()', () => { @customElement('test-constraint-validation') class TestConstraintValidation extends baseClass { - @property({ type: Boolean }) checked = false; - @property({ type: Boolean }) required = false; + @property({type: Boolean}) checked = false; + @property({type: Boolean}) required = false; override render() { return html`
`;