summaryrefslogtreecommitdiff
path: root/tests/functional
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-12-11 15:33:39 +0100
committerJohn Villalovos <john@sodarock.com>2021-12-11 10:25:08 -0800
commite3035a799a484f8d6c460f57e57d4b59217cd6de (patch)
treec6c37fb24df6da686f070bc55ddcafaab76250ff /tests/functional
parent49af15b3febda5af877da06c3d8c989fbeede00a (diff)
downloadgitlab-e3035a799a484f8d6c460f57e57d4b59217cd6de.tar.gz
chore(api): temporarily remove topic delete endpoint
It is not yet available upstream.
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/api/test_topics.py3
-rw-r--r--tests/functional/conftest.py2
2 files changed, 0 insertions, 5 deletions
diff --git a/tests/functional/api/test_topics.py b/tests/functional/api/test_topics.py
index 7ad71a5..dea457c 100644
--- a/tests/functional/api/test_topics.py
+++ b/tests/functional/api/test_topics.py
@@ -16,6 +16,3 @@ def test_topics(gl):
updated_topic = gl.topics.get(topic.id)
assert updated_topic.description == topic.description
-
- topic.delete()
- assert not gl.topics.list()
diff --git a/tests/functional/conftest.py b/tests/functional/conftest.py
index 109ee24..625cff9 100644
--- a/tests/functional/conftest.py
+++ b/tests/functional/conftest.py
@@ -24,8 +24,6 @@ def reset_gitlab(gl):
for deploy_token in group.deploytokens.list():
deploy_token.delete()
group.delete()
- for topic in gl.topics.list():
- topic.delete()
for variable in gl.variables.list():
variable.delete()
for user in gl.users.list():