diff --git a/test/tests/unit/view/sidebar.js b/test/tests/unit/view/sidebar.js index 9f654722..f0996220 100644 --- a/test/tests/unit/view/sidebar.js +++ b/test/tests/unit/view/sidebar.js @@ -87,7 +87,7 @@ describe('module \'' + ID + '\'', function () { assert.lengthOfKeys(instance, 1); }); - it('adds HTML #sidebar-toggle', function () { + it('adds HTML #sidebar-toggle to #toolbar', function () { this.applyFn(); assert.lengthOf($('#toolbar > #sidebar-toggle'), 1); diff --git a/test/tests/unit/view/viewmode.js b/test/tests/unit/view/viewmode.js index 23ef79f4..4591bc6a 100644 --- a/test/tests/unit/view/viewmode.js +++ b/test/tests/unit/view/viewmode.js @@ -86,13 +86,13 @@ describe('module \'' + ID + '\'', function () { assert.isUndefined(instance); }); - it('adds HTML to #sidebar', function () { + it('adds HTML .block to #sidebar', function () { this.applyFn(); assert.lengthOf($('#sidebar > .block > .l10n-view'), 1); }); - it('adds Style to head', function () { + it('adds style to head', function () { var styleTagCount = $('head > style').length; this.applyFn();