From 61c050c79bce946fdf9a0d5f9da12246acb0d42b Mon Sep 17 00:00:00 2001 From: Noah Negrey Date: Mon, 13 Apr 2020 15:27:19 -0600 Subject: [PATCH] translate: make test generic Fix: https://github.com/GoogleCloudPlatform/python-docs-samples/issues/3381 --- translate/cloud-client/quickstart_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translate/cloud-client/quickstart_test.py b/translate/cloud-client/quickstart_test.py index 4018daa060f8..8def7f3e9acb 100644 --- a/translate/cloud-client/quickstart_test.py +++ b/translate/cloud-client/quickstart_test.py @@ -20,4 +20,4 @@ def test_quickstart(capsys): quickstart.run_quickstart() out, _ = capsys.readouterr() - assert u'Привет, мир!' in out + assert u'Translation' in out