fix log in test

This commit is contained in:
Pascal Fischer
2025-07-03 13:41:36 +02:00
parent e78b7dd058
commit 459db2ba4f

View File

@@ -967,7 +967,7 @@ func Test_IncrementNetworkSerial(t *testing.T) {
err = manager.Store.ExecuteInTransaction(context.Background(), func(transaction store.Store) error {
err = transaction.IncrementNetworkSerial(context.Background(), store.LockingStrengthNone, accountID)
if err != nil {
t.Fatalf("Failed to get account %s: %v", accountID, err)
return fmt.Errorf("failed to get account %s: %v", accountID, err)
}
return nil
})