Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danielstjules committed Dec 11, 2017
1 parent fd3025b commit 6d1dd24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/spec.js
Expand Up @@ -124,7 +124,7 @@ describe('parallel', function() {
'2 passing',
'1 failing',
'1) suite test2:',
'AssertionError: true == false',
'true == false',
'fixtures/assertionFailure.js:11'
]);

Expand Down Expand Up @@ -284,7 +284,7 @@ describe('parallel', function() {
it('correctly handles promise rejections', function(done) {
run(fixtures.promiseRejection, function(err, stdout, stderr) {
assert(err);
assert(stdout.indexOf('AssertionError: false == true') !== -1);
assert(stdout.indexOf('false == true') !== -1);
done();
});
});
Expand Down

0 comments on commit 6d1dd24

Please sign in to comment.