Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-page committed Aug 8, 2016
1 parent e3e67a1 commit 4f76c35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ describe('Load Test', function() {
var data = statistics.linearRegression(mem);
//console.log(data.m);
if (data.m >= 0.025)
done(new Error('Memory leak not detected.'));
done(new Error('Memory leak detected.'));
else
done();

Expand Down Expand Up @@ -470,7 +470,7 @@ describe('Load Test', function() {
var data = statistics.linearRegression(mem);
//console.log(data.m);
if (data.m >= 0.025)
end(new Error('Memory leak not detected.'));
end(new Error('Memory leak detected.'));
else
end();
} else {
Expand Down

0 comments on commit 4f76c35

Please sign in to comment.