From 1e7431f6a6e49db5dcd3bf3f1c2fd6cddacc6be1 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Wed, 21 Sep 2022 12:02:27 -0700 Subject: [PATCH] fix: preserve default values in x-goog-request-params header (#820) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: use gapic-generator-typescript v2.17.0 PiperOrigin-RevId: 474338479 Source-Link: https://github.com/googleapis/googleapis/commit/d5d35e0353b59719e8917103b1bc7df2782bf6ba Source-Link: https://github.com/googleapis/googleapis-gen/commit/efcd3f93962a103f68f003e2a1eecde6fa216a27 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZWZjZDNmOTM5NjJhMTAzZjY4ZjAwM2UyYTFlZWNkZTZmYTIxNmEyNyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * test: use fully qualified request type name in tests PiperOrigin-RevId: 475685359 Source-Link: https://github.com/googleapis/googleapis/commit/7a129736313ceb1f277c3b7f7e16d2e04cc901dd Source-Link: https://github.com/googleapis/googleapis-gen/commit/370c729e2ba062a167449c27882ba5f379c5c34d Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMzcwYzcyOWUyYmEwNjJhMTY3NDQ5YzI3ODgyYmE1ZjM3OWM1YzM0ZCJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * test: fix translation Co-authored-by: Owl Bot Co-authored-by: Alexander Fenster --- translate/test/v3/translate_translate_text.test.js | 2 +- translate/test/v3beta1/translate_translate_text_beta.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/translate/test/v3/translate_translate_text.test.js b/translate/test/v3/translate_translate_text.test.js index 4acba8d857..1212c49f20 100644 --- a/translate/test/v3/translate_translate_text.test.js +++ b/translate/test/v3/translate_translate_text.test.js @@ -32,6 +32,6 @@ describe(REGION_TAG, () => { const output = execSync( `node v3/${REGION_TAG}.js ${projectId} ${location} ${text}` ); - assert.match(output, /Translation: Zdravo svijete/); + assert.match(output, /Translation: Здраво Свете/); }); }); diff --git a/translate/test/v3beta1/translate_translate_text_beta.test.js b/translate/test/v3beta1/translate_translate_text_beta.test.js index 7ea78f1628..39bdc4d80d 100644 --- a/translate/test/v3beta1/translate_translate_text_beta.test.js +++ b/translate/test/v3beta1/translate_translate_text_beta.test.js @@ -32,6 +32,6 @@ describe(REGION_TAG, () => { const output = execSync( `node v3beta1/${REGION_TAG}.js ${projectId} ${location} ${text}` ); - assert.match(output, /Translation: Zdravo svijete/); + assert.match(output, /Translation: Здраво Свете/); }); });