@@ -11,7 +11,6 @@ func (suite *KeeperTestSuite) TestQueryCollection() {
11
11
minter1 ,
12
12
testCollection1 .Symbol ,
13
13
testCollection1 .Name ,
14
- testCollection1 .Description ,
15
14
testCollection1 .Uri ,
16
15
)
17
16
suite .NoError (err )
@@ -22,7 +21,6 @@ func (suite *KeeperTestSuite) TestQueryCollection() {
22
21
suite .NoError (err )
23
22
suite .Equal (testCollection1 .Name , res .Collection .Name )
24
23
suite .Equal (testCollection1 .Symbol , res .Collection .Symbol )
25
- suite .Equal (testCollection1 .Description , res .Collection .Description )
26
24
suite .Equal (testCollection1 .Uri , res .Collection .Uri )
27
25
suite .Equal (testCollection1 .Minter , res .Collection .Minter )
28
26
}
@@ -34,7 +32,6 @@ func (suite *KeeperTestSuite) TestQueryOwnerOf() {
34
32
minter1 ,
35
33
testCollection1 .Symbol ,
36
34
testCollection1 .Name ,
37
- testCollection1 .Description ,
38
35
testCollection1 .Uri ,
39
36
)
40
37
suite .NoError (err )
@@ -46,7 +43,6 @@ func (suite *KeeperTestSuite) TestQueryOwnerOf() {
46
43
collectionDenom ,
47
44
testNft1 .TokenId ,
48
45
testNft1 .Name ,
49
- testNft1 .Description ,
50
46
testNft1 .Uri ,
51
47
)
52
48
suite .NoError (err )
@@ -66,7 +62,6 @@ func (suite *KeeperTestSuite) TestQueryNftInfo() {
66
62
minter1 ,
67
63
testCollection1 .Symbol ,
68
64
testCollection1 .Name ,
69
- testCollection1 .Description ,
70
65
testCollection1 .Uri ,
71
66
)
72
67
suite .NoError (err )
@@ -78,7 +73,6 @@ func (suite *KeeperTestSuite) TestQueryNftInfo() {
78
73
collectionDenom ,
79
74
testNft1 .TokenId ,
80
75
testNft1 .Name ,
81
- testNft1 .Description ,
82
76
testNft1 .Uri ,
83
77
)
84
78
suite .NoError (err )
@@ -90,7 +84,6 @@ func (suite *KeeperTestSuite) TestQueryNftInfo() {
90
84
suite .NoError (err )
91
85
suite .Equal (testNft1 .TokenId , res .Nft .TokenId )
92
86
suite .Equal (testNft1 .Name , res .Nft .Name )
93
- suite .Equal (testNft1 .Description , res .Nft .Description )
94
87
suite .Equal (testNft1 .Uri , res .Nft .Uri )
95
88
suite .Equal (collectionDenom , res .Nft .Collection )
96
89
suite .Equal (owner1 .String (), res .Nft .Owner )
@@ -103,7 +96,6 @@ func (suite *KeeperTestSuite) TestQueryNftsOfOwner() {
103
96
minter1 ,
104
97
testCollection1 .Symbol ,
105
98
testCollection1 .Name ,
106
- testCollection1 .Description ,
107
99
testCollection1 .Uri ,
108
100
)
109
101
suite .NoError (err )
@@ -115,7 +107,6 @@ func (suite *KeeperTestSuite) TestQueryNftsOfOwner() {
115
107
collectionDenom ,
116
108
testNft1 .TokenId ,
117
109
testNft1 .Name ,
118
- testNft1 .Description ,
119
110
testNft1 .Uri ,
120
111
)
121
112
suite .NoError (err )
@@ -127,7 +118,6 @@ func (suite *KeeperTestSuite) TestQueryNftsOfOwner() {
127
118
collectionDenom ,
128
119
testNft2 .TokenId ,
129
120
testNft2 .Name ,
130
- testNft2 .Description ,
131
121
testNft2 .Uri ,
132
122
)
133
123
suite .NoError (err )
@@ -148,7 +138,6 @@ func (suite *KeeperTestSuite) TestQueryNftsByOwner() {
148
138
minter1 ,
149
139
testCollection1 .Symbol ,
150
140
testCollection1 .Name ,
151
- testCollection1 .Description ,
152
141
testCollection1 .Uri ,
153
142
)
154
143
suite .NoError (err )
@@ -160,7 +149,6 @@ func (suite *KeeperTestSuite) TestQueryNftsByOwner() {
160
149
collectionDenom ,
161
150
testNft1 .TokenId ,
162
151
testNft1 .Name ,
163
- testNft1 .Description ,
164
152
testNft1 .Uri ,
165
153
)
166
154
suite .NoError (err )
@@ -172,7 +160,6 @@ func (suite *KeeperTestSuite) TestQueryNftsByOwner() {
172
160
collectionDenom ,
173
161
testNft2 .TokenId ,
174
162
testNft2 .Name ,
175
- testNft2 .Description ,
176
163
testNft2 .Uri ,
177
164
)
178
165
suite .NoError (err )
@@ -200,7 +187,6 @@ func (suite *KeeperTestSuite) TestQueryNftsByOwner() {
200
187
collectionDenom ,
201
188
testNft3 .TokenId ,
202
189
testNft3 .Name ,
203
- testNft3 .Description ,
204
190
testNft3 .Uri ,
205
191
)
206
192
suite .NoError (err )
0 commit comments