From 01f8ce6b0390c170cbafaacd12c742c76fb6e5a4 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 30 Nov 2022 15:43:43 -0500 Subject: [PATCH] fix typo --- src/components/checkbox/checkbox.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/checkbox/checkbox.test.ts b/src/components/checkbox/checkbox.test.ts index 16e6192a..e3d0e58c 100644 --- a/src/components/checkbox/checkbox.test.ts +++ b/src/components/checkbox/checkbox.test.ts @@ -22,7 +22,7 @@ describe('', () => { expect(el.defaultChecked).to.be.false; }); - it('should have title if title attribute isset', async () => { + it('should have title if title attribute is set', async () => { const el = await fixture(html` `); const input = el.shadowRoot!.querySelector('input')!;