diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-10-09 15:35:32 +0200 |
---|---|---|
committer | Nejc Habjan <hab.nejc@gmail.com> | 2021-10-11 22:49:46 +0200 |
commit | 545f8ed24124837bf4e55aa34e185270a4b7aeff (patch) | |
tree | adad76b598b917d9ca77ed600dcd62c63af67950 /tests/functional/api/test_projects.py | |
parent | 5a1678f43184bd459132102cc13cf8426fe0449d (diff) | |
download | gitlab-chore/master-to-main.tar.gz |
chore: rename `master` branch to `main`chore/master-to-main
BREAKING CHANGE: As of python-gitlab 3.0.0, the default branch for development
has changed from `master` to `main`.
Diffstat (limited to 'tests/functional/api/test_projects.py')
-rw-r--r-- | tests/functional/api/test_projects.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/api/test_projects.py b/tests/functional/api/test_projects.py index 88b274c..ba8e25b 100644 --- a/tests/functional/api/test_projects.py +++ b/tests/functional/api/test_projects.py @@ -240,7 +240,7 @@ def test_project_stars(project): def test_project_tags(project, project_file): - tag = project.tags.create({"tag_name": "v1.0", "ref": "master"}) + tag = project.tags.create({"tag_name": "v1.0", "ref": "main"}) assert len(project.tags.list()) == 1 tag.delete() |