From f686ce7ffeafdcfad56cac0a3b9cc2e34bea2164 Mon Sep 17 00:00:00 2001 From: Mo Mustafa <96316894+mmustafa-tse@users.noreply.github.com> Date: Wed, 4 Dec 2024 12:18:36 -0800 Subject: [PATCH] Update: add capitalization and quotes #3 Co-authored-by: Robert Ing --- test/src/tests-kit-blocking.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/tests-kit-blocking.ts b/test/src/tests-kit-blocking.ts index 9fb49834..0c964960 100644 --- a/test/src/tests-kit-blocking.ts +++ b/test/src/tests-kit-blocking.ts @@ -628,7 +628,7 @@ describe('kit blocking', () => { let kitBlocker = new KitBlocker(kitBlockerDataPlan, window.mParticle.getInstance()); expect(() => { kitBlocker.isAttributeKeyBlocked('unplannedAttr') }).to.not.throw(TypeError, /Cannot read properties of undefined \(reading 'unplannedAttr'\)/) - // allow unplanned user attributes is prioritized when blocking unplanned attributes is also enabled, hence the expected value is false + // "Allow unplanned user attributes" is prioritized when blocking unplanned attributes is also enabled, hence the expected value is false expect(kitBlocker.isAttributeKeyBlocked('unplannedAttr')).to.equal(false) // reset data points dataPlan.dtpn.vers.version_document.data_points = oldDataPoints;