diff --git a/tests/cs/cs-hgvs.test.js b/tests/cs/cs-hgvs.test.js index a220d9f..05a5c0b 100644 --- a/tests/cs/cs-hgvs.test.js +++ b/tests/cs/cs-hgvs.test.js @@ -52,7 +52,7 @@ describe('HGVS Provider', () => { }); test('should have correct description', () => { - expect(provider.description()).toBe('HGVS codes'); + expect(provider.description()).toBe('HGVS validator'); }); test('should return correct version', async () => { diff --git a/tx/cs/cs-snomed.js b/tx/cs/cs-snomed.js index 46260d2..f2a20d7 100644 --- a/tx/cs/cs-snomed.js +++ b/tx/cs/cs-snomed.js @@ -445,10 +445,6 @@ class SnomedProvider extends CodeSystemProvider { * @returns {boolean} True if actualVersion is more detailed than checkVersion (for SCT) */ versionIsMoreDetailed(checkVersion, actualVersion) { - console.log('checkVersion:', checkVersion); - console.log('actualVersion:', actualVersion); - console.log('lengths:', checkVersion.length, actualVersion ? actualVersion.length : "??"); - console.log('outcome:', actualVersion && actualVersion.startsWith(checkVersion)); return actualVersion && actualVersion.startsWith(checkVersion); }