From 16e695fc0ecef038ab30e999c7a4fa3421532f1e Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Fri, 6 Jul 2018 18:08:22 -0700 Subject: [PATCH] Fix lint warning. --- test/unit/strict-template-policy.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/strict-template-policy.html b/test/unit/strict-template-policy.html index 108f127611..4c5d64335b 100644 --- a/test/unit/strict-template-policy.html +++ b/test/unit/strict-template-policy.html @@ -195,7 +195,7 @@ assertThrows(function() { class HasNoTemplateThrows extends Polymer.Element { static get is() { return 'has-no-template-throws'; } - }; + } customElements.define(HasNoTemplateThrows.is, HasNoTemplateThrows); var el = document.createElement('has-no-template-throws'); document.getElementById('target').appendChild(el);