From e95210da82ac0f401c85a7e2b22311eced45ea53 Mon Sep 17 00:00:00 2001 From: pngwn Date: Tue, 28 Dec 2021 11:43:11 +0000 Subject: [PATCH] chore: linting --- CHANGELOG.md | 2 +- test/runtime/samples/attribute-boolean-true/_config.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09651c5fa5..a7444fe9c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## unreleased -* Fix non-boolean attribute rendering in SSR to render truthy values as is, making it consistent with DOM rendering. +* Fix non-boolean attribute rendering in SSR to render truthy values as is, making it consistent with DOM rendering. ([#6121](https://github.com/sveltejs/svelte/issues/6121)) ## 3.44.3 diff --git a/test/runtime/samples/attribute-boolean-true/_config.js b/test/runtime/samples/attribute-boolean-true/_config.js index c0c1ee0ee7..89b2fc7c21 100644 --- a/test/runtime/samples/attribute-boolean-true/_config.js +++ b/test/runtime/samples/attribute-boolean-true/_config.js @@ -1,8 +1,8 @@ export default { html: '', test({ assert, target }) { - const textarea = target.querySelector("textarea"); - assert.equal(textarea.dataset.attr, "true"); + const textarea = target.querySelector('textarea'); + assert.equal(textarea.dataset.attr, 'true'); assert.ok(textarea.readOnly); - }, + } };