Skip to content

Commit

Permalink
testing(translate): bump the timeout for operations (#4258)
Browse files Browse the repository at this point in the history
fixes #4220
  • Loading branch information
Takashi Matsuo committed Jul 16, 2020
1 parent d7c3f96 commit df10b23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion translate/cloud-client/beta_snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def batch_translate_text(project_id, input_uri, output_uri):
input_configs=[input_config],
output_config=output_config)

result = operation.result(180)
result = operation.result(timeout=240)

print(u'Total Characters: {}'.format(result.total_characters))
print(u'Translated Characters: {}'.format(result.translated_characters))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ def test_batch_translate_text(capsys, bucket):
"gs://cloud-samples-data/translation/text.txt",
"gs://{}/translation/BATCH_TRANSLATION_OUTPUT/".format(bucket.name),
PROJECT_ID,
timeout=240
)
out, _ = capsys.readouterr()
assert "Total Characters" in out

0 comments on commit df10b23

Please sign in to comment.