From b4b8f202b5e3944fb1bd13c4237cfbf517001f4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Eckel?= Date: Tue, 5 Mar 2024 14:26:24 +0100 Subject: [PATCH] adjusted to refactored path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jürgen Eckel --- util/machine_nft_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/machine_nft_test.go b/util/machine_nft_test.go index 18aa82d..a87a5c8 100644 --- a/util/machine_nft_test.go +++ b/util/machine_nft_test.go @@ -6,6 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/planetmint/planetmint-go/testutil/keeper" + "github.com/planetmint/planetmint-go/testutil/moduleobject" "github.com/planetmint/planetmint-go/testutil/sample" "github.com/planetmint/planetmint-go/util" "github.com/planetmint/planetmint-go/util/mocks" @@ -33,7 +34,7 @@ func TestMachineNFTIssuance(t *testing.T) { util.RegisterAssetServiceHTTPClient = &mocks.MockClient{} _, ctx := keeper.MachineKeeper(t) sk, pk := sample.KeyPair() - machine := sample.Machine(pk, pk, sk, "") + machine := moduleobject.Machine(pk, pk, sk, "") goCtx := sdk.WrapSDKContext(ctx) err := util.IssueMachineNFT(goCtx, &machine, "https", "testnet-asset.rddl.io", "/register_asset")