Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio committed Jun 20, 2024
1 parent a3c0601 commit 1064850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-rpc/internal/integrationtest/migrate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func testMigrateFromVersion(t *testing.T, version string) {
}
err := test.GetRPCLient().CallResult(context.Background(), "getTransactions", getTransactions, &transactionsResult)
require.NoError(t, err)
require.Equal(t, transactionsResult.Transactions, 1)
require.Len(t, transactionsResult.Transactions, 1)
require.Equal(t, submitTransactionResponse.Ledger, transactionsResult.Transactions[0].Ledger)

var eventsResult methods.GetEventsResponse
Expand Down

0 comments on commit 1064850

Please sign in to comment.