Skip to content

Commit

Permalink
fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
miiu96 committed Apr 4, 2024
1 parent 3e143e0 commit 585a4aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integrationtests/logsCrossShard_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func TestIndexLogSourceShardAndAfterDestinationAndAgainSource(t *testing.T) {
string(genericResponse.Docs[0].Source),
)

event1ID := "91a3aefb559162e4ef87b8f018540f884c104c9ff5fc8cf6d7482f5dd1ba74bf"
event1ID := logID + "-0-0"
ids = []string{event1ID}
err = esClient.DoMultiGet(context.Background(), ids, indexerdata.EventsIndex, true, genericResponse)
require.Nil(t, err)
Expand Down Expand Up @@ -118,7 +118,7 @@ func TestIndexLogSourceShardAndAfterDestinationAndAgainSource(t *testing.T) {
string(genericResponse.Docs[0].Source),
)

event2ID, event3ID := "8239abb1014728f1a8c3524994724d6ccf15c717109d59a7bf0fa72dcad880b7", "37d12045a3f872d81513a13417b41749c7cb4902887b3846bfa47b9013f59575"
event2ID, event3ID := logID+"-1-0", logID+"-1-1"
ids = []string{event2ID, event3ID}
err = esClient.DoMultiGet(context.Background(), ids, indexerdata.EventsIndex, true, genericResponse)
require.Nil(t, err)
Expand Down

0 comments on commit 585a4aa

Please sign in to comment.