Skip to content

Commit

Permalink
fix review's issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LavrovArtem committed Sep 1, 2017
1 parent 0a4d37c commit 2045e6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/client/fixtures/sandbox/xhr-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ test('toString, instanceof, constructor and static properties', function () {
module('regression');

asyncTest('unexpected text modifying during typing text in the search input on the http://www.google.co.uk (B238528)', function () {
var timeoutId = 100;
var timeout = 100;
var syncActionExecuted = false;
var xhr = new XMLHttpRequest();

Expand All @@ -101,7 +101,7 @@ asyncTest('unexpected text modifying during typing text in the search input on t
};

xhr.onreadystatechange = ready;
xhr.open('GET', '/xhr-test/' + timeoutId);
xhr.open('GET', '/xhr-test/' + timeout);
xhr.send(null);

syncActionExecuted = true;
Expand Down Expand Up @@ -219,7 +219,7 @@ asyncTest('authorization headers by client should be processed (GH-1016)', funct
xhr.send();
});

asyncTest('"XHR_COMPLETED_EVENT" for completed requests should be raised before calling outer handlers (GH-1283)', function () {
asyncTest('"XHR_COMPLETED_EVENT" should be raised when xhr is prevented (GH-1283)', function () {
var xhr = new XMLHttpRequest();
var timeoutId = null;
var testDone = function (eventObj) {
Expand Down

0 comments on commit 2045e6b

Please sign in to comment.