Skip to content

Commit 5f831b4

Browse files
committed
[Refactor] Results: use this instead of self
1 parent f6d30cf commit 5f831b4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

lib/results.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,9 @@ Results.prototype.createStream = function (opts) {
167167
};
168168

169169
Results.prototype.push = function (t) {
170-
var self = this;
171-
$push(self.tests, t);
172-
self._watch(t);
173-
self.emit('_push', t);
170+
$push(this.tests, t);
171+
this._watch(t);
172+
this.emit('_push', t);
174173
};
175174

176175
Results.prototype.only = function (t) {

0 commit comments

Comments
 (0)