Skip to content

Commit

Permalink
Fix variable application in verifyAssetParameters (#4410)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldiamant authored Aug 15, 2022
1 parent d530f3e commit fd488f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e-go/features/transactions/asset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1186,8 +1186,8 @@ func verifyAssetParameters(asset v1.AssetParams,
unitName, assetName, manager, reserve, freeze, clawback string,
metadataHash []byte, assetURL string, asser *require.Assertions) {

asser.Equal(asset.UnitName, "test")
asser.Equal(asset.AssetName, "testunit")
asser.Equal(asset.UnitName, unitName)
asser.Equal(asset.AssetName, assetName)
asser.Equal(asset.ManagerAddr, manager)
asser.Equal(asset.ReserveAddr, reserve)
asser.Equal(asset.FreezeAddr, freeze)
Expand Down

0 comments on commit fd488f8

Please sign in to comment.