We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055a6cc commit 5f66bd9Copy full SHA for 5f66bd9
src/test/adapter.ts
@@ -267,7 +267,7 @@ describe('PHP Debug Adapter', () => {
267
const fatalErrorScope = await getErrorScope();
268
assert.propertyVal(fatalErrorScope, 'name', 'Fatal error');
269
assert.propertyVal(fatalErrorScope, 'type', 'Fatal error');
270
- assert.match(fatalErrorScope.message, /^"Uncaught Exception/);
+ assert.match(fatalErrorScope.message, /^"Uncaught Exception/i);
271
assert.match(fatalErrorScope.message, /this is an exception/);
272
assert.match(fatalErrorScope.message, /"$/);
273
});
0 commit comments