summaryrefslogtreecommitdiff
path: root/tests/functional/api
diff options
context:
space:
mode:
authorNejc Habjan <nejc.habjan@siemens.com>2022-04-01 11:10:30 +0200
committerJohn Villalovos <john@sodarock.com>2022-04-01 08:22:19 -0700
commitd1d96bda5f1c6991c8ea61dca8f261e5b74b5ab6 (patch)
tree10826fedd12e4dc722c35bda11084fead8c5ceb9 /tests/functional/api
parent8db68411d6444787ca339cf50dd96b2ab41de60c (diff)
downloadgitlab-d1d96bda5f1c6991c8ea61dca8f261e5b74b5ab6.tar.gz
feat(api): re-add topic delete endpoint
This reverts commit e3035a799a484f8d6c460f57e57d4b59217cd6de.
Diffstat (limited to 'tests/functional/api')
-rw-r--r--tests/functional/api/test_topics.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/functional/api/test_topics.py b/tests/functional/api/test_topics.py
index dea457c..7ad71a5 100644
--- a/tests/functional/api/test_topics.py
+++ b/tests/functional/api/test_topics.py
@@ -16,3 +16,6 @@ def test_topics(gl):
updated_topic = gl.topics.get(topic.id)
assert updated_topic.description == topic.description
+
+ topic.delete()
+ assert not gl.topics.list()