From 410285aa9374f9d31c3c699b747de5cc10249b6e Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Mon, 16 Sep 2024 14:13:56 +0200 Subject: [PATCH] Update selection.manager.test.ts --- .../core/utils/selection-manager/selection.manager.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/utils/selection-manager/selection.manager.test.ts b/src/Umbraco.Web.UI.Client/src/packages/core/utils/selection-manager/selection.manager.test.ts index 81630b60bc..7b4bf7e51e 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/utils/selection-manager/selection.manager.test.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/utils/selection-manager/selection.manager.test.ts @@ -77,8 +77,8 @@ describe('UmbSelectionManager', () => { expect(manager).to.have.property('clearSelection').that.is.a('function'); }); - it('has a setDisallow method', () => { - expect(manager).to.have.property('setDisallow').that.is.a('function'); + it('has a setAllow method', () => { + expect(manager).to.have.property('setAllow').that.is.a('function'); }); }); });