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

Commit

Permalink
ARQ-1517 - QUnit extension does not distinguish between errors and fa…
Browse files Browse the repository at this point in the history
…ilures
  • Loading branch information
tolis-e committed Oct 1, 2013
1 parent 6032bf3 commit e6f38a8
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -133,8 +133,8 @@ public void report() {
if (qunitTest.isFailed()) {
// notify test failure
this.getNotifier().fireTestFailure(
new Failure(testDescription, new Exception(
generateFailedAssertionMessage(qunitTest.getAssertions()))));
new Failure(testDescription, new AssertionError(generateFailedAssertionMessage(qunitTest
.getAssertions()))));
} else {
// notify test finished
this.getNotifier().fireTestFinished(testDescription);
Expand Down

0 comments on commit e6f38a8

Please sign in to comment.