From d0b41779fde1309cec347447b907f83ec483bbe3 Mon Sep 17 00:00:00 2001 From: aribray <45905583+aribray@users.noreply.github.com> Date: Thu, 9 Sep 2021 12:15:56 -0700 Subject: [PATCH] fix: remove unnecessary assertion (#721) Change-Id: I5884ac5267ca2ec3a2aeff996ca21ea9ef5932c8 --- translate/test/hybridGlossaries.test.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/translate/test/hybridGlossaries.test.js b/translate/test/hybridGlossaries.test.js index 3623266f150..f8861c4d317 100644 --- a/translate/test/hybridGlossaries.test.js +++ b/translate/test/hybridGlossaries.test.js @@ -42,9 +42,6 @@ describe(REGION_TAG, () => { const projectId = await translationClient.getProjectId(); const output = execSync(`node hybridGlossaries.js ${projectId}`); assert(output.includes(glossaryId)); - assert( - output.includes('Audio content written to file resources/example.mp3') - ); assert.strictEqual(fs.existsSync(outputFile), true); });