From a5a1f82b9b78f465ef6bbbfba55dda8937d90dfa 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 --- samples/test/hybridGlossaries.test.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/samples/test/hybridGlossaries.test.js b/samples/test/hybridGlossaries.test.js index 3623266f..f8861c4d 100644 --- a/samples/test/hybridGlossaries.test.js +++ b/samples/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); });