diff --git a/test/runtime/samples/attribute-casing-unknown-namespace/_config.js b/test/runtime/samples/attribute-casing-unknown-namespace/_config.js index 45ee778a49..bb6989e655 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"); } };