@@ -120,7 +120,7 @@ func TestBillingService_GetStorageBillingOrg(t *testing.T) {
120120 testMethod (t , r , "GET" )
121121 fmt .Fprint (w , `{
122122 "days_left_in_billing_cycle": 20,
123- "estimated_paid_storage_for_month": 15,
123+ "estimated_paid_storage_for_month": 15.25 ,
124124 "estimated_storage_for_month": 40
125125 }` )
126126 })
@@ -133,7 +133,7 @@ func TestBillingService_GetStorageBillingOrg(t *testing.T) {
133133
134134 want := & StorageBilling {
135135 DaysLeftInBillingCycle : 20 ,
136- EstimatedPaidStorageForMonth : 15 ,
136+ EstimatedPaidStorageForMonth : 15.25 ,
137137 EstimatedStorageForMonth : 40 ,
138138 }
139139 if ! cmp .Equal (hook , want ) {
@@ -262,7 +262,7 @@ func TestBillingService_GetStorageBillingUser(t *testing.T) {
262262 testMethod (t , r , "GET" )
263263 fmt .Fprint (w , `{
264264 "days_left_in_billing_cycle": 20,
265- "estimated_paid_storage_for_month": 15,
265+ "estimated_paid_storage_for_month": 15.25 ,
266266 "estimated_storage_for_month": 40
267267 }` )
268268 })
@@ -275,7 +275,7 @@ func TestBillingService_GetStorageBillingUser(t *testing.T) {
275275
276276 want := & StorageBilling {
277277 DaysLeftInBillingCycle : 20 ,
278- EstimatedPaidStorageForMonth : 15 ,
278+ EstimatedPaidStorageForMonth : 15.25 ,
279279 EstimatedStorageForMonth : 40 ,
280280 }
281281 if ! cmp .Equal (hook , want ) {
0 commit comments