Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
fix broken suite integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
boneskull committed Jan 24, 2019
1 parent ba076a1 commit d6d429d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/suite.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ describe('suite returning a value', function() {
if (err) {
return done(err);
}
var pattern = new RegExp('Deprecation Warning', 'g');
var pattern = new RegExp('Suites ignore return values', 'g');
var result = res.output.match(pattern) || [];
expect(result, 'to have length', 1);
done();
Expand Down

0 comments on commit d6d429d

Please sign in to comment.