From 6e762928a13d9f2671a00cdaa343a4d7aa65e3aa Mon Sep 17 00:00:00 2001 From: Petr Spacek Date: Mon, 11 Jan 2021 17:58:00 +0100 Subject: [PATCH] fix: test yaml-schema Package --- test/schemaValidation.test.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/test/schemaValidation.test.ts b/test/schemaValidation.test.ts index 46c706be..747cface 100644 --- a/test/schemaValidation.test.ts +++ b/test/schemaValidation.test.ts @@ -878,15 +878,7 @@ suite('Validation Tests', () => { const testTextDocument = setupTextDocument(content); const result = await languageService.doValidation(testTextDocument, true); expect(result[0]).deep.equal( - createExpectedError( - ArrayTypeError, - 4, - 10, - 4, - 18, - DiagnosticSeverity.Warning, - 'yaml-schema: https://json.schemastore.org/composer' - ) + createExpectedError(ArrayTypeError, 4, 10, 4, 18, DiagnosticSeverity.Warning, 'yaml-schema: Package') ); });