1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

Fix linting on all tests

Manually.
This commit is contained in:
Kegan Dougal
2017-01-16 10:28:51 +00:00
parent 0fa9f7c609
commit 317898d41c
13 changed files with 78 additions and 59 deletions

View File

@@ -84,8 +84,11 @@ HttpBackend.prototype = {
*/
_takeFromQueue: function(path) {
let req = null;
let i, j;
let matchingReq, expectedReq, testResponse = null;
let i;
let j;
let matchingReq = null;
let expectedReq = null;
let testResponse = null;
for (i = 0; i < this.requests.length; i++) {
req = this.requests[i];
for (j = 0; j < this.expectedRequests.length; j++) {