|
46 | 46 | from disable_secret_version_with_etag import disable_secret_version_with_etag
|
47 | 47 | from disable_secret_with_delayed_destroy import disable_secret_with_delayed_destroy
|
48 | 48 | from edit_secret_annotations import edit_secret_annotations
|
49 |
| -from edit_secret_labels import edit_secret_labels |
50 | 49 | from enable_secret_version import enable_secret_version
|
51 | 50 | from enable_secret_version_with_etag import enable_secret_version_with_etag
|
52 | 51 | from get_secret import get_secret
|
@@ -719,16 +718,6 @@ def test_edit_secret_annotations(
|
719 | 718 | assert updated_secret.annotations[annotation_key] == updated_annotation_value
|
720 | 719 |
|
721 | 720 |
|
722 |
| -def test_edit_secret_labels( |
723 |
| - secret: Tuple[str, str, str], label_key: str |
724 |
| -) -> None: |
725 |
| - project_id, secret_id, _ = secret |
726 |
| - updated_label_value = "updatedlabelvalue" |
727 |
| - labels = {label_key: updated_label_value} |
728 |
| - updated_secret = edit_secret_labels(project_id, secret_id, labels) |
729 |
| - assert updated_secret.labels[label_key] == updated_label_value |
730 |
| - |
731 |
| - |
732 | 721 | def test_update_secret(secret: Tuple[str, str, str]) -> None:
|
733 | 722 | project_id, secret_id, _ = secret
|
734 | 723 | updated_secret = update_secret(project_id, secret_id)
|
|
0 commit comments