From 6adbc23ca8fb85bbd5958ba3dfe7747738cc4c17 Mon Sep 17 00:00:00 2001 From: Steven Orvell Date: Thu, 11 Apr 2019 10:45:19 -0700 Subject: [PATCH] Fix typo --- test/unit/polymer-dom.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/polymer-dom.html b/test/unit/polymer-dom.html index 77b36780be..973d66202e 100644 --- a/test/unit/polymer-dom.html +++ b/test/unit/polymer-dom.html @@ -527,7 +527,7 @@ document.body.appendChild(el); const testEl = el.$.first; const testElDom = dom(testEl); - testEl.className = 'foo'; + testElDom.className = 'foo'; assert.isTrue(testEl.classList.contains('foo')); if (window['ShadyDOM']) { assert.isTrue(testEl.classList.contains('style-scope'));