From ff294a908faaa72652797a0dd42f3b796edf4923 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Thu, 7 Sep 2017 04:42:12 +0000 Subject: [PATCH] spelling: readonly --- test/unit/property-effects.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/property-effects.html b/test/unit/property-effects.html index 558f9c4c49..9501ea3393 100644 --- a/test/unit/property-effects.html +++ b/test/unit/property-effects.html @@ -215,7 +215,7 @@ }); test('no read-only observer called with assignment', function() { - el.readolyvalue = 46; + el.readonlyvalue = 46; assert.equal(el.observerCounts.readonlyvalueChanged, 0, 'observer should not be called for readOnly prop assignment'); });