Skip to content

Commit

Permalink
Fix bad assertion in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
benvinegar committed Jul 8, 2016
1 parent 31d99f9 commit fd664b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ describe('integration', function () {
},
function () {
var ravenData = iframe.contentWindow.ravenData[0];
assert.equal(ravenData.exception.type, 'Error');
assert.equal(ravenData.exception.value, 'lol');
assert.equal(ravenData.exception.values[0].type, 'Error');
assert.equal(ravenData.exception.values[0].value, 'lol');
assert.equal(ravenData.exception.values[0].stacktrace.frames.length, 1);
}
);
Expand Down

0 comments on commit fd664b1

Please sign in to comment.