Skip to content

Commit fd664b1

Browse files
committed
Fix bad assertion in integration test
1 parent 31d99f9 commit fd664b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ describe('integration', function () {
9595
},
9696
function () {
9797
var ravenData = iframe.contentWindow.ravenData[0];
98-
assert.equal(ravenData.exception.type, 'Error');
99-
assert.equal(ravenData.exception.value, 'lol');
98+
assert.equal(ravenData.exception.values[0].type, 'Error');
99+
assert.equal(ravenData.exception.values[0].value, 'lol');
100100
assert.equal(ravenData.exception.values[0].stacktrace.frames.length, 1);
101101
}
102102
);

0 commit comments

Comments
 (0)