Skip to content

Commit 0dbae0a

Browse files
authored
Removed trailing slash from api call for get_tests (atlassian-api#771)
Per issue atlassian-api#597, this api call should not have a trailing slash according to Xray documentation.
1 parent 25ca6cf commit 0dbae0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atlassian/xray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def get_tests(self, test_keys):
1818
:param test_keys: list of tests (eg. `['TEST-001', 'TEST-002']`) to retrieve.
1919
:return: Returns the retrieved tests.
2020
"""
21-
url = "rest/raven/1.0/api/test/?keys={0}".format(";".join(test_keys))
21+
url = "rest/raven/1.0/api/test?keys={0}".format(";".join(test_keys))
2222
return self.get(url)
2323

2424
def get_test_statuses(self):

0 commit comments

Comments
 (0)