fix: stabilize backend tests

This commit is contained in:
2026-01-08 14:07:58 +08:00
parent 7f1d2e7cb3
commit edbb62449b
18 changed files with 281 additions and 147 deletions

View File

@@ -3,6 +3,7 @@ package services
import (
"context"
"errors"
"strconv"
"time"
"quyun/v2/app/errorx"
@@ -104,6 +105,6 @@ func (s *wallet) Recharge(
// Mock Pay Params
return &user_dto.RechargeResponse{
PayParams: "mock_paid_success",
OrderID: order.ID,
OrderID: strconv.FormatInt(order.ID, 10),
}, nil
}