summaryrefslogtreecommitdiff
path: root/tools/python_test_v4.py
diff options
context:
space:
mode:
authorMax Wittig <max.wittig95@gmail.com>2019-07-01 18:41:58 +0200
committerGitHub <noreply@github.com>2019-07-01 18:41:58 +0200
commitad1c0dda37f573673beaf9f25187f51751a5a484 (patch)
tree95a823cfc4e31eb99ec5a6449da9878284343f75 /tools/python_test_v4.py
parentf539c36dddf8e0eb3b2156a3ed4e2ff2fa667cf1 (diff)
parent90a363154067bcf763043124d172eaf705c8fe90 (diff)
downloadgitlab-ad1c0dda37f573673beaf9f25187f51751a5a484.tar.gz
Merge pull request #803 from python-gitlab/feat/related_mr
feat: add support for issue.related_merge_requests
Diffstat (limited to 'tools/python_test_v4.py')
-rw-r--r--tools/python_test_v4.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/python_test_v4.py b/tools/python_test_v4.py
index 07f3589..358f2e4 100644
--- a/tools/python_test_v4.py
+++ b/tools/python_test_v4.py
@@ -566,6 +566,8 @@ assert isinstance(issue1.user_agent_detail(), dict)
assert issue1.user_agent_detail()["user_agent"]
assert issue1.participants()
+assert type(issue1.closed_by()) == list
+assert type(issue1.related_merge_requests()) == list
# issues labels and events
label2 = admin_project.labels.create({"name": "label2", "color": "#aabbcc"})