Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tamirms committed Sep 18, 2024
1 parent e45312f commit 866da4a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions services/horizon/internal/db2/history/operation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,13 @@ func TestOperationQueryBuilder(t *testing.T) {
"LEFT JOIN history_transactions ht ON ht.id = hop.transaction_id " +
"JOIN history_operation_participants hopp ON hopp.history_operation_id = hop.id " +
"WHERE hopp.history_account_id = ? AND " +
"hopp.history_operation_id < ? AND hopp.history_operation_id >= ? " +
"hopp.history_operation_id > ? AND " +
"hopp.history_operation_id < ? " +
"ORDER BY hopp.history_operation_id desc LIMIT 10",
[]interface{}{
int64(2),
int64(8589938689),
int64(214748364799),
int64(8589938689),
},
},
{
Expand Down

0 comments on commit 866da4a

Please sign in to comment.