From d8207f00a1c1fbaf1383c487083304dd73e83df0 Mon Sep 17 00:00:00 2001 From: Bartek Nowotarski Date: Wed, 25 May 2022 19:20:29 +0200 Subject: [PATCH] fix integraiton test --- services/horizon/internal/integration/txsub_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/services/horizon/internal/integration/txsub_test.go b/services/horizon/internal/integration/txsub_test.go index eb3723db4d..60b8717b18 100644 --- a/services/horizon/internal/integration/txsub_test.go +++ b/services/horizon/internal/integration/txsub_test.go @@ -1,7 +1,6 @@ package integration import ( - "strconv" "sync" "testing" @@ -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) }