From b2fb1cfdd839682399f6e9a7410f9af577d5de30 Mon Sep 17 00:00:00 2001 From: Daniel Freedman Date: Thu, 15 Mar 2018 10:42:13 -0700 Subject: [PATCH] use a clearer test for shadowRoot --- test/unit/inheritance.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/inheritance.html b/test/unit/inheritance.html index 497bed3b08..be78f49ca3 100644 --- a/test/unit/inheritance.html +++ b/test/unit/inheritance.html @@ -269,7 +269,7 @@ }); test('returning null nullifies the parent template', function() { - assert.isNotOk(el.shadowRoot); + assert.equal(el.shadowRoot, null); }); });