de5b359e89359c4a1ea8ca9a09ac6592d7b1e3f3,translate/cloud-client/translate_v3_batch_translate_text_with_glossary_test.py,,glossary,#,28

Before Change


@pytest.fixture(scope="session")
def glossary():
    Get the ID of a glossary available to session (do not mutate/delete).
    glossary_id = "must-start-with-letters-" + str(uuid.uuid1())
    translate_v3_create_glossary.create_glossary(
        PROJECT_ID, GLOSSARY_INPUT_URI, glossary_id
    )

After Change


@pytest.fixture(scope="session")
def glossary():
    Get the ID of a glossary available to session (do not mutate/delete).
    glossary_id = "test-{}".format(uuid.uuid4())
    translate_v3_create_glossary.create_glossary(
        PROJECT_ID, GLOSSARY_INPUT_URI, glossary_id
    )
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: GoogleCloudPlatform/python-docs-samples
Commit Name: de5b359e89359c4a1ea8ca9a09ac6592d7b1e3f3
Time: 2020-03-12
Author: nnegrey@users.noreply.github.com
File Name: translate/cloud-client/translate_v3_batch_translate_text_with_glossary_test.py
Class Name:
Method Name: glossary


Project Name: GoogleCloudPlatform/python-docs-samples
Commit Name: de5b359e89359c4a1ea8ca9a09ac6592d7b1e3f3
Time: 2020-03-12
Author: nnegrey@users.noreply.github.com
File Name: translate/cloud-client/translate_v3_delete_glossary_test.py
Class Name:
Method Name: test_delete_glossary


Project Name: GoogleCloudPlatform/python-docs-samples
Commit Name: de5b359e89359c4a1ea8ca9a09ac6592d7b1e3f3
Time: 2020-03-12
Author: nnegrey@users.noreply.github.com
File Name: translate/cloud-client/translate_v3_create_glossary_test.py
Class Name:
Method Name: test_create_glossary