diff --git a/packages/language-service/test/ts_plugin_spec.ts b/packages/language-service/test/ts_plugin_spec.ts index dcd50ca6c0d4cd..16528565f27737 100644 --- a/packages/language-service/test/ts_plugin_spec.ts +++ b/packages/language-service/test/ts_plugin_spec.ts @@ -166,7 +166,7 @@ describe('plugin', () => { 'Identifier \'people_1\' is not defined. The component declaration, template variable declarations, and element references do not contain such a member'); }); it('should report an unknown context reference', () => { - expectError('even_1', 'The template context does not defined a member called \'even_1\''); + expectError('even_1', 'The template context does not define a member called \'even_1\''); }); it('should report an unknown value in a key expression', () => { expectError( @@ -180,7 +180,7 @@ describe('plugin', () => { } it('should report an implicit context reference', () => { expectError( - 'implicit', 'The template context does not defined a member called \'unknown\''); + 'implicit', 'The template context does not define a member called \'unknown\''); }); });