From cf765d6ff9c304339bf477fad84654bbe28cce18 Mon Sep 17 00:00:00 2001 From: c9s Date: Mon, 16 Dec 2024 11:57:43 +0800 Subject: [PATCH] fix account test --- pkg/service/account_test.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkg/service/account_test.go b/pkg/service/account_test.go index 089c029e0..8c8f4e99a 100644 --- a/pkg/service/account_test.go +++ b/pkg/service/account_test.go @@ -7,9 +7,9 @@ import ( "github.com/jmoiron/sqlx" "github.com/stretchr/testify/assert" - "github.com/c9s/bbgo/pkg/asset" "github.com/c9s/bbgo/pkg/fixedpoint" "github.com/c9s/bbgo/pkg/types" + "github.com/c9s/bbgo/pkg/types/asset" ) func TestAccountService(t *testing.T) { @@ -26,16 +26,16 @@ func TestAccountService(t *testing.T) { t1 := time.Now() err = service.InsertAsset(t1, "binance", types.ExchangeBinance, "main", false, false, "", asset.Map{ "BTC": asset.Asset{ - Currency: "BTC", - Total: fixedpoint.MustNewFromString("1.0"), - InUSD: fixedpoint.MustNewFromString("10.0"), - InBTC: fixedpoint.MustNewFromString("0.0001"), - Time: t1, - Locked: fixedpoint.MustNewFromString("0"), - Available: fixedpoint.MustNewFromString("1.0"), - Borrowed: fixedpoint.MustNewFromString("0"), - NetAsset: fixedpoint.MustNewFromString("1"), - PriceInUSD: fixedpoint.MustNewFromString("44870"), + Currency: "BTC", + Total: fixedpoint.MustNewFromString("1.0"), + NetAssetInUSD: fixedpoint.MustNewFromString("10.0"), + NetAssetInBTC: fixedpoint.MustNewFromString("0.0001"), + Time: t1, + Locked: fixedpoint.MustNewFromString("0"), + Available: fixedpoint.MustNewFromString("1.0"), + Borrowed: fixedpoint.MustNewFromString("0"), + NetAsset: fixedpoint.MustNewFromString("1"), + PriceInUSD: fixedpoint.MustNewFromString("44870"), }, }) assert.NoError(t, err)