From 8b9476e8e4bdf9e7e8b8ea944b264e0d9d74e681 Mon Sep 17 00:00:00 2001 From: halfnelson Date: Fri, 11 Sep 2020 21:18:38 +1000 Subject: [PATCH] keep lint happy --- .../samples/attribute-casing-unknown-namespace/_config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtime/samples/attribute-casing-unknown-namespace/_config.js b/test/runtime/samples/attribute-casing-unknown-namespace/_config.js index 45ee778a49ba..bb6989e655f9 100644 --- a/test/runtime/samples/attribute-casing-unknown-namespace/_config.js +++ b/test/runtime/samples/attribute-casing-unknown-namespace/_config.js @@ -7,12 +7,12 @@ export default { `, options: { - hydrate: false, // Hydrations currently doesn't work, the case sensitivity is only handled for svg elements. + hydrate: false // Hydrations currently doesn't work, the case sensitivity is only handled for svg elements. }, test({ assert, target }) { const attr = sel => target.querySelector(sel).attributes[0].name; assert.equal(attr('page'), "horizontalAlignment"); - assert.equal(attr('button'), "textWrap") + assert.equal(attr('button'), "textWrap"); } };