Skip to content

Commit

Permalink
test(language-service): fix typo in diagnostic template info
Browse files Browse the repository at this point in the history
  • Loading branch information
cRAN-cg committed Sep 15, 2019
1 parent e8ed284 commit e9ae21d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/language-service/test/ts_plugin_spec.ts
Expand Up @@ -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(
Expand All @@ -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\'');
});
});

Expand Down

0 comments on commit e9ae21d

Please sign in to comment.