File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,5 @@ def getproperty(propertyname):
55
55
stringvalue = helper .getparser ().get ("properties" , propertyname )
56
56
57
57
if ( "null" == stringvalue ):
58
- print (" Reading %s from environment" % propertyname )
59
58
stringvalue = os .getenv (temp )
60
- print (" Read propertyvalue %s from environment" % stringvalue )
61
59
return stringvalue
Original file line number Diff line number Diff line change 17
17
# Versions should comply with PEP440. For a discussion on single-sourcing
18
18
# the version across setup.py and the project code, see
19
19
# https://packaging.python.org/en/latest/single_source_version.html
20
- version = '1.0.2 ' ,
20
+ version = '1.0.3 ' ,
21
21
22
22
description = 'Authorize.Net Python SDK' ,
23
23
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def testGetTransactionDetails(self):
26
26
27
27
gettransactiondetailsrequest = apicontractsv1 .getTransactionDetailsRequest ()
28
28
gettransactiondetailsrequest .merchantAuthentication = self .merchantAuthentication
29
- gettransactiondetailsrequest .transId = '2240608177 ' #update valid transaction id
29
+ gettransactiondetailsrequest .transId = '2244574222 ' #update valid transaction id
30
30
gettransactiondetailscontroller = getTransactionDetailsController (gettransactiondetailsrequest )
31
31
gettransactiondetailscontroller .execute ()
32
32
response = gettransactiondetailscontroller .getresponse ()
@@ -51,7 +51,7 @@ def testcancelSubscription(self):
51
51
cancelsubscriptionrequest = apicontractsv1 .ARBCancelSubscriptionRequest ()
52
52
cancelsubscriptionrequest .merchantAuthentication = self .merchantAuthentication
53
53
cancelsubscriptionrequest .refId = 'Sample'
54
- cancelsubscriptionrequest .subscriptionId = '2921797 ' #input valid subscriptionId
54
+ cancelsubscriptionrequest .subscriptionId = '2261331 ' #input valid subscriptionId
55
55
cancelsubscriptioncontroller = ARBCancelSubscriptionController (cancelsubscriptionrequest )
56
56
cancelsubscriptioncontroller .execute ()
57
57
response = cancelsubscriptioncontroller .getresponse ()
You can’t perform that action at this time.
0 commit comments