From eff01fb3a156daa801fac87bc77a6afc39b27ea6 Mon Sep 17 00:00:00 2001 From: "Dr Mark C. Sinclair" Date: Thu, 15 Feb 2024 10:33:14 +0000 Subject: [PATCH] chore(developer): corrected filename in ERROR_UnknownFileFormat unit test --- developer/src/kmc/test/test-infrastructureMessages.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer/src/kmc/test/test-infrastructureMessages.ts b/developer/src/kmc/test/test-infrastructureMessages.ts index 9403f58745..6567b4e07d 100644 --- a/developer/src/kmc/test/test-infrastructureMessages.ts +++ b/developer/src/kmc/test/test-infrastructureMessages.ts @@ -103,7 +103,7 @@ describe('InfrastructureMessages', function () { it('should generate ERROR_UnknownFileFormat if an analyze osk-char-use mapping file is not the correct type', async function() { const ncb = new NodeCompilerCallbacks({logLevel: 'silent'}); - const options = {mappingFile: makePathToFixture('analyze', 'error_not_a_project_file.xxx')}; + const options = {mappingFile: makePathToFixture('analyze', 'error_unknown_file_format.xxx')}; await analyzeUnitTestEndpoints.analyzeOskCharUse(ncb, [], options); assert.isTrue(ncb.hasMessage(InfrastructureMessages.ERROR_UnknownFileFormat), 'ERROR_UnknownFileFormat not generated, instead got: '+JSON.stringify(ncb.messages,null,2));