Skip to content

Commit

Permalink
fix integraiton test
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekn committed May 25, 2022
1 parent 70b9753 commit d8207f0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions services/horizon/internal/integration/txsub_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package integration

import (
"strconv"
"sync"
"testing"

Expand Down Expand Up @@ -58,7 +57,7 @@ func TestTxsub(t *testing.T) {
tt.Equal(accounts[i].GetAccountID(), txResp.Account)
seq, err := account.GetSequenceNumber()
assert.NoError(t, err)
tt.Equal(strconv.FormatInt(seq, 10), txResp.AccountSequence)
tt.Equal(seq, txResp.AccountSequence)
t.Logf("%d/%d done", i, j)
}(i, j, account)
}
Expand Down

0 comments on commit d8207f0

Please sign in to comment.