@@ -282,13 +282,25 @@ func TestGenesisNonAvvmUtxos(t *testing.T) {
282
282
}
283
283
tmpUtxo := tmpGenesisUtxos [0 ]
284
284
if tmpUtxo .Id .Id ().String () != expectedTxId {
285
- t .Fatalf ("did not get expected TxID: got %s, wanted %s" , tmpUtxo .Id .Id ().String (), expectedTxId )
285
+ t .Fatalf (
286
+ "did not get expected TxID: got %s, wanted %s" ,
287
+ tmpUtxo .Id .Id ().String (),
288
+ expectedTxId ,
289
+ )
286
290
}
287
291
if tmpUtxo .Output .Address ().String () != testAddr {
288
- t .Fatalf ("did not get expected address: got %s, wanted %s" , tmpUtxo .Output .Address ().String (), testAddr )
292
+ t .Fatalf (
293
+ "did not get expected address: got %s, wanted %s" ,
294
+ tmpUtxo .Output .Address ().String (),
295
+ testAddr ,
296
+ )
289
297
}
290
298
if tmpUtxo .Output .Amount () != testAmount {
291
- t .Fatalf ("did not get expected amount: got %d, wanted %d" , tmpUtxo .Output .Amount (), testAmount )
299
+ t .Fatalf (
300
+ "did not get expected amount: got %d, wanted %d" ,
301
+ tmpUtxo .Output .Amount (),
302
+ testAmount ,
303
+ )
292
304
}
293
305
}
294
306
@@ -323,12 +335,24 @@ func TestGenesisAvvmUtxos(t *testing.T) {
323
335
}
324
336
tmpUtxo := tmpGenesisUtxos [0 ]
325
337
if tmpUtxo .Id .Id ().String () != expectedTxId {
326
- t .Fatalf ("did not get expected TxID: got %s, wanted %s" , tmpUtxo .Id .Id ().String (), expectedTxId )
338
+ t .Fatalf (
339
+ "did not get expected TxID: got %s, wanted %s" ,
340
+ tmpUtxo .Id .Id ().String (),
341
+ expectedTxId ,
342
+ )
327
343
}
328
344
if tmpUtxo .Output .Address ().String () != expectedAddr {
329
- t .Fatalf ("did not get expected address: got %s, wanted %s" , tmpUtxo .Output .Address ().String (), expectedAddr )
345
+ t .Fatalf (
346
+ "did not get expected address: got %s, wanted %s" ,
347
+ tmpUtxo .Output .Address ().String (),
348
+ expectedAddr ,
349
+ )
330
350
}
331
351
if tmpUtxo .Output .Amount () != testAmount {
332
- t .Fatalf ("did not get expected amount: got %d, wanted %d" , tmpUtxo .Output .Amount (), testAmount )
352
+ t .Fatalf (
353
+ "did not get expected amount: got %d, wanted %d" ,
354
+ tmpUtxo .Output .Amount (),
355
+ testAmount ,
356
+ )
333
357
}
334
358
}
0 commit comments