From 5826c099009296bbc4b340269ceba92f0e88b107 Mon Sep 17 00:00:00 2001 From: Artur Arseniev Date: Wed, 24 May 2017 22:40:12 +0200 Subject: [PATCH] Fix regression --- test/specs/selector_manager/model/SelectorModels.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/specs/selector_manager/model/SelectorModels.js b/test/specs/selector_manager/model/SelectorModels.js index 8fdec0375..32f24dde8 100644 --- a/test/specs/selector_manager/model/SelectorModels.js +++ b/test/specs/selector_manager/model/SelectorModels.js @@ -28,12 +28,12 @@ define([path + 'Selector', }); it('escapeName test', function() { - this.obj.escapeName('@Te sT*').should.equal('-te-st-'); + this.obj.escapeName('@Te sT*').should.equal('-Te-sT-'); }); it('Name is corrected at instantiation', function() { this.obj = new Selector({ name: '@Te sT*'}); - this.obj.get('name').should.equal('-te-st-'); + this.obj.get('name').should.equal('-Te-sT-'); }); @@ -50,4 +50,4 @@ define([path + 'Selector', } }; -}); \ No newline at end of file +});