Skip to content
This repository has been archived by the owner on Sep 19, 2018. It is now read-only.

Commit

Permalink
Prefer ERROR to TIMEOUT as a status
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraham committed Mar 27, 2014
1 parent b0af119 commit 5c074e3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testharness.js
Original file line number Diff line number Diff line change
Expand Up @@ -1412,7 +1412,9 @@ policies and contribution forms [3].
};

Tests.prototype.timeout = function() {
this.status.status = this.status.TIMEOUT;
if (this.status.status == this.status.OK) {
this.status.status = this.status.TIMEOUT;
}
this.complete();
};

Expand Down

0 comments on commit 5c074e3

Please sign in to comment.