Skip to content

Commit

Permalink
spelling: attached
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Sep 6, 2017
1 parent 6c59f53 commit adc4f0e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions test/unit/ready-attached-order-class.html
Expand Up @@ -21,7 +21,7 @@
window.clearTestLists = function() {
window.actualAttachedList = [];
window.actualReadyList = [];
window.actualReadyBeforeAtachedList = [];
window.actualReadyBeforeAttachedList = [];
};

window.clearTestLists();
Expand Down Expand Up @@ -60,7 +60,7 @@
this.attachedList = window.actualAttachedList.slice();
window.actualAttachedList.push(this);
if (!this._readied) {
window.actualReadyBeforeAtachedList.push(this);
window.actualReadyBeforeAttachedList.push(this);
}
}
};
Expand Down Expand Up @@ -207,7 +207,7 @@
});

test('element attached called after ready', function() {
assert.equal(window.actualReadyBeforeAtachedList.length, 0);
assert.equal(window.actualReadyBeforeAttachedList.length, 0);
});

test('element has $ references at attached time', function() {
Expand Down Expand Up @@ -262,7 +262,7 @@
});

test('element attached called after ready', function() {
assert.equal(window.actualReadyBeforeAtachedList.length, 0);
assert.equal(window.actualReadyBeforeAttachedList.length, 0);
});

test('element has $ references at attached time', function() {
Expand Down
8 changes: 4 additions & 4 deletions test/unit/ready-attached-order.html
Expand Up @@ -21,7 +21,7 @@
window.clearTestLists = function() {
window.actualAttachedList = [];
window.actualReadyList = [];
window.actualReadyBeforeAtachedList = [];
window.actualReadyBeforeAttachedList = [];
};

window.clearTestLists();
Expand Down Expand Up @@ -49,7 +49,7 @@
this.attachedList = window.actualAttachedList.slice();
window.actualAttachedList.push(this);
if (!this._readied) {
window.actualReadyBeforeAtachedList.push(this);
window.actualReadyBeforeAttachedList.push(this);
}
}
};
Expand Down Expand Up @@ -189,7 +189,7 @@
});

test('element attached called after ready', function() {
assert.equal(window.actualReadyBeforeAtachedList.length, 0);
assert.equal(window.actualReadyBeforeAttachedList.length, 0);
});

test('element has $ references at attached time', function() {
Expand Down Expand Up @@ -235,7 +235,7 @@
});

test('element attached called after ready', function() {
assert.equal(window.actualReadyBeforeAtachedList.length, 0);
assert.equal(window.actualReadyBeforeAttachedList.length, 0);
});

test('element has $ references at attached time', function() {
Expand Down

0 comments on commit adc4f0e

Please sign in to comment.