diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-09-09 00:06:29 +0200 |
---|---|---|
committer | John Villalovos <john@sodarock.com> | 2021-09-08 20:16:21 -0700 |
commit | 2b8a94a77ba903ae97228e7ffa3cc2bf6ceb19ba (patch) | |
tree | a0568fdf3a930eefa1001a734131a355196778a0 /tests/functional/api/test_projects.py | |
parent | ca7777e0dbb82b5d0ff466835a94c99e381abb7c (diff) | |
download | gitlab-2b8a94a77ba903ae97228e7ffa3cc2bf6ceb19ba.tar.gz |
refactor(objects): remove deprecated tag release API
BREAKING CHANGE: remove deprecated tag release API.
This was removed in GitLab 14.0
Diffstat (limited to 'tests/functional/api/test_projects.py')
-rw-r--r-- | tests/functional/api/test_projects.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/functional/api/test_projects.py b/tests/functional/api/test_projects.py index c10c8ad..88b274c 100644 --- a/tests/functional/api/test_projects.py +++ b/tests/functional/api/test_projects.py @@ -243,10 +243,6 @@ def test_project_tags(project, project_file): tag = project.tags.create({"tag_name": "v1.0", "ref": "master"}) assert len(project.tags.list()) == 1 - tag.set_release_description("Description 1") - tag.set_release_description("Description 2") - assert tag.release["description"] == "Description 2" - tag.delete() assert len(project.tags.list()) == 0 |