@@ -194,7 +194,7 @@ mod tests {
194194
195195 #[ test]
196196 fn set_and_remove ( ) {
197- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
197+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
198198 let mut storage = CwStorage ( cw_storage) ;
199199
200200 storage. set ( b"key1" , b"value1" ) ;
@@ -209,7 +209,7 @@ mod tests {
209209
210210 #[ test]
211211 fn keys_bounded ( ) {
212- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
212+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
213213 let mut storage = CwStorage ( cw_storage) ;
214214
215215 storage. set ( b"key1" , b"value1" ) ;
@@ -229,7 +229,7 @@ mod tests {
229229
230230 #[ test]
231231 fn keys_unbounded ( ) {
232- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
232+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
233233 let mut storage = CwStorage ( cw_storage) ;
234234
235235 storage. set ( b"key1" , b"value1" ) ;
@@ -250,7 +250,7 @@ mod tests {
250250
251251 #[ test]
252252 fn values_bounded ( ) {
253- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
253+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
254254 let mut storage = CwStorage ( cw_storage) ;
255255
256256 storage. set ( b"key1" , b"value1" ) ;
@@ -270,7 +270,7 @@ mod tests {
270270
271271 #[ test]
272272 fn values_unbounded ( ) {
273- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
273+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
274274 let mut storage = CwStorage ( cw_storage) ;
275275
276276 storage. set ( b"key1" , b"value1" ) ;
@@ -291,7 +291,7 @@ mod tests {
291291
292292 #[ test]
293293 fn pairs_bounded ( ) {
294- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
294+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
295295 let mut storage = CwStorage ( cw_storage) ;
296296
297297 storage. set ( b"key1" , b"value1" ) ;
@@ -323,7 +323,7 @@ mod tests {
323323
324324 #[ test]
325325 fn pairs_unbounded ( ) {
326- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
326+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
327327 let mut storage = CwStorage ( cw_storage) ;
328328
329329 storage. set ( b"key1" , b"value1" ) ;
@@ -355,7 +355,7 @@ mod tests {
355355
356356 #[ test]
357357 fn rev_keys_bounded ( ) {
358- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
358+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
359359 let mut storage = CwStorage ( cw_storage) ;
360360
361361 storage. set ( b"key1" , b"value1" ) ;
@@ -375,7 +375,7 @@ mod tests {
375375
376376 #[ test]
377377 fn rev_keys_unbounded ( ) {
378- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
378+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
379379 let mut storage = CwStorage ( cw_storage) ;
380380
381381 storage. set ( b"key1" , b"value1" ) ;
@@ -398,7 +398,7 @@ mod tests {
398398
399399 #[ test]
400400 fn rev_values_bounded ( ) {
401- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
401+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
402402 let mut storage = CwStorage ( cw_storage) ;
403403
404404 storage. set ( b"key1" , b"value1" ) ;
@@ -418,7 +418,7 @@ mod tests {
418418
419419 #[ test]
420420 fn rev_values_unbounded ( ) {
421- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
421+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
422422 let mut storage = CwStorage ( cw_storage) ;
423423
424424 storage. set ( b"key1" , b"value1" ) ;
@@ -441,7 +441,7 @@ mod tests {
441441
442442 #[ test]
443443 fn rev_pairs_bounded ( ) {
444- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
444+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
445445 let mut storage = CwStorage ( cw_storage) ;
446446
447447 storage. set ( b"key1" , b"value1" ) ;
@@ -473,7 +473,7 @@ mod tests {
473473
474474 #[ test]
475475 fn rev_pairs_unbounded ( ) {
476- let cw_storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
476+ let cw_storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
477477 let mut storage = CwStorage ( cw_storage) ;
478478
479479 storage. set ( b"key1" , b"value1" ) ;
@@ -508,7 +508,7 @@ mod tests {
508508 fn into_storage ( ) {
509509 use cosmwasm_std:: Storage as _;
510510
511- let mut storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
511+ let mut storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
512512 storage. set ( b"key" , b"value" ) ;
513513
514514 let storage_ref = ( & storage, ) . into_storage ( ) ;
@@ -519,7 +519,7 @@ mod tests {
519519 fn into_storage_mut ( ) {
520520 use cosmwasm_std:: Storage as _;
521521
522- let mut storage = cosmwasm_std:: MemoryStorage :: new ( ) ;
522+ let mut storage = cosmwasm_std:: testing :: MockStorage :: new ( ) ;
523523 let storage_ref = ( & mut storage, ) . into_storage ( ) ;
524524
525525 storage_ref. set ( b"key" , b"value" ) ;
0 commit comments