Merge branch 'feat/developer/kmc-convert-useArtifacts' of https://github.com/keymanapp/keyman into feat/developer/kmc-convert-useArtifacts

This commit is contained in:
Sabine 2025-07-09 15:19:18 +02:00
commit e5fc0a1a35
2 changed files with 1 additions and 2 deletions

View file

@ -76,7 +76,6 @@ export class KmnFileWriter {
}
}
/**
* @brief member function to create data for stores that will be printed to the resulting kmn file
* @param data_ukelele an object containing all data read from a .keylayout file

View file

@ -50,7 +50,7 @@ describe('KeylayoutFileReader', function () {
});
it('read() should return empty array on typo in path', async function () {
const result = sut_r.read(makePathToFixture('../data|Test.keylayout'));
const result = sut_r.read(makePathToFixture('../' + 'data' + '|Test.keylayout'));
assert.isNull(result);
});
});