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 +});