@@ -282,13 +282,25 @@ func TestGenesisNonAvvmUtxos(t *testing.T) {
282282 }
283283 tmpUtxo := tmpGenesisUtxos [0 ]
284284 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+ )
286290 }
287291 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+ )
289297 }
290298 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+ )
292304 }
293305}
294306
@@ -323,12 +335,24 @@ func TestGenesisAvvmUtxos(t *testing.T) {
323335 }
324336 tmpUtxo := tmpGenesisUtxos [0 ]
325337 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+ )
327343 }
328344 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+ )
330350 }
331351 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+ )
333357 }
334358}
0 commit comments