From ed6748271036959b34fb3e51ed82a466a74bdcb4 Mon Sep 17 00:00:00 2001 From: "miherlosev@mail.ru" Date: Fri, 27 Nov 2015 14:13:30 +0300 Subject: [PATCH] change the first button of the test names to lowercase (close #298) --- .../code-instrumentation/type-verification-test.js | 10 +++++----- .../fixtures/sandbox/event/event-simulator-test.js | 4 ++-- test/client/fixtures/sandbox/event/event-test.js | 4 ++-- .../fixtures/sandbox/event/focus-blur-change-test.js | 2 +- .../fixtures/sandbox/node/dom-processor-test.js | 12 ++++++------ test/client/fixtures/sandbox/node/window-test.js | 2 +- test/client/fixtures/sandbox/shadow-ui-test.js | 2 +- test/client/fixtures/sandbox/xhr-test.js | 2 +- test/client/fixtures/transport-test.js | 8 ++++---- test/client/fixtures/utils/dom-test.js | 8 ++++---- 10 files changed, 27 insertions(+), 27 deletions(-) diff --git a/test/client/fixtures/sandbox/code-instrumentation/type-verification-test.js b/test/client/fixtures/sandbox/code-instrumentation/type-verification-test.js index 97029f820..8c496fb51 100644 --- a/test/client/fixtures/sandbox/code-instrumentation/type-verification-test.js +++ b/test/client/fixtures/sandbox/code-instrumentation/type-verification-test.js @@ -12,13 +12,13 @@ QUnit.testDone(function () { iframeSandbox.off(iframeSandbox.IFRAME_READY_TO_INIT_EVENT, initIframeTestHandler); }); -test('Is anchor instance', function () { +test('is anchor instance', function () { var anchor = document.createElement('a'); ok(accessors.protocol.condition(anchor)); }); -test('Is dom element instance', function () { +test('is dom element instance', function () { var img = document.createElement('img'); var fragment = document.createDocumentFragment(); var notDomElement = { @@ -32,7 +32,7 @@ test('Is dom element instance', function () { ok(!accessors.src.condition(document), 'Document isn\'t dom element'); }); -test('Is document instance', function () { +test('is document instance', function () { var savedGetProxyUrl = urlUtils.getProxyUrl; var fakeDoc = { referrer: '' @@ -48,7 +48,7 @@ test('Is document instance', function () { urlUtils.getProxyUrl = savedGetProxyUrl; }); -test('Is window instance', function () { +test('is window instance', function () { var savedGetProxyUrl = urlUtils.getProxyUrl; var fakeWin = { location: '' @@ -64,7 +64,7 @@ test('Is window instance', function () { urlUtils.getProxyUrl = savedGetProxyUrl; }); -test('Is location instance', function () { +test('is location instance', function () { var savedGetProxyUrl = urlUtils.getProxyUrl; var fakeLocation = { href: '' diff --git a/test/client/fixtures/sandbox/event/event-simulator-test.js b/test/client/fixtures/sandbox/event/event-simulator-test.js index 492572d64..c4bd2deca 100644 --- a/test/client/fixtures/sandbox/event/event-simulator-test.js +++ b/test/client/fixtures/sandbox/event/event-simulator-test.js @@ -317,7 +317,7 @@ if (browserUtils.isIE) { } if (!browserUtils.isFirefox) { - asyncTest('Window event should not be undefined inside iframe handler (B254199)', function () { + asyncTest('window event should not be undefined inside iframe handler (B254199)', function () { var iframeSrc = window.QUnitGlobals.getResourceUrl('../../../data/event-sandbox/event-simulator.html'); var $iframe = $('