File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ sudo: false
4
4
python :
5
5
- " 2.7"
6
6
- " 3.4"
7
+ - " 3.5"
7
8
# - "pypy" Disabling pypy until travis moves to newer version, known issue with lxml crashing pypy
8
9
9
10
install :
Original file line number Diff line number Diff line change @@ -136,7 +136,6 @@ def execute(self):
136
136
if self ._httpResponse :
137
137
self ._httpResponse .encoding = constants .response_encoding
138
138
self ._httpResponse = self ._httpResponse .text [3 :] #strip BOM
139
- print (self ._httpResponse );
140
139
self .afterexecute ()
141
140
try :
142
141
self ._response = apicontractsv1 .CreateFromDocument (self ._httpResponse )
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ def setUp(self):
70
70
self .subscriptionOne = apicontractsv1 .ARBSubscriptionType ()
71
71
self .subscriptionOne .paymentSchedule = self .paymentScheduleOne
72
72
self .subscriptionOne .amount = Decimal (str (round (random .random ()* 100 , 2 )))
73
- self .subscriptionOne .trialAmount = Decimal ( '0.03' )
73
+ self .subscriptionOne .trialAmount = Decimal ( str ( round ( random . random () * 100 , 2 )) )
74
74
self .subscriptionOne .payment = self .payment
75
75
self .subscriptionOne .billTo = self .customerOne
76
76
@@ -89,4 +89,4 @@ def setUp(self):
89
89
self .billTo .country = "USA"
90
90
91
91
92
-
92
+
You can’t perform that action at this time.
0 commit comments