Skip to content

Commit 25a9610

Browse files
author
Luiko Czub
committed
getTestCasesForTestSuite example - wrong argument detail #23
1 parent f65eaa8 commit 25a9610

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Changes in TestLink-API-Python-client Source Distribution
44
TestLink-API-Python-client UNDER DEVELOP v0.4.9
55
-----------------------------------------------------------
66

7+
implement 1.9.10 api change - getTestCasesForTestSuite #23 - under construction
8+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9+
10+
- parameter keywords
11+
712
implement 1.9.10 api change - reportTCResult #24
813
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
914

example/TestLinkExampleCustomFields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
print "getTestSuiteByID", newTestSuite
134134

135135
response = myTestLink.getTestCasesForTestSuite(newTestSuiteID_B,
136-
deep=True, detail='full')
136+
deep=True, details='full', getkeywords=True)
137137
print "getTestCasesForTestSuite", response
138138

139139
# get informationen - TestCase_B

example/TestLinkExampleGenericApi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,10 +453,10 @@
453453
response = myTestLink.getTestSuitesForTestSuite(newTestSuiteID_A)
454454
print "getTestSuitesForTestSuite", response
455455
response = myTestLink.getTestCasesForTestSuite(newTestSuiteID_A,
456-
deep=True, detail='full')
456+
deep=True, details='full')
457457
print "getTestCasesForTestSuite", response
458458
response = myTestLink.getTestCasesForTestSuite(newTestSuiteID_B,
459-
deep=False, detail='only_id')
459+
deep=False, details='only_id')
460460
print "getTestCasesForTestSuite", response
461461

462462
# get informationen - TestCase_B

src/testlink/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
#
1818
# ------------------------------------------------------------------------
1919

20-
VERSION = '0.4.9-dev-24'
20+
VERSION = '0.4.9-dev-23'

0 commit comments

Comments
 (0)