Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update error message about hits not found
  • Loading branch information
mrodm committed Feb 27, 2025
commit a81cbdffa32828c165ace7a68baa1c35fcba7753
2 changes: 1 addition & 1 deletion internal/testrunner/runners/system/tester.go
Original file line number Diff line number Diff line change
Expand Up @@ -1640,7 +1640,7 @@ func (r *tester) waitForDocs(ctx context.Context, config *testConfig, dataStream
}

if !passed {
return nil, testrunner.ErrTestCaseFailed{Reason: fmt.Sprintf("could not find hits in %s data stream", dataStream)}
return nil, testrunner.ErrTestCaseFailed{Reason: fmt.Sprintf("could not find the expected hits in %s data stream", dataStream)}
}

return hits, nil
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<failure>test case failed: could not find hits in logs-failed_fields_present_assert.test-[[:digit:]]+ data stream</failure>
<failure>test case failed: could not find the expected hits in logs-failed_fields_present_assert.test-[[:digit:]]+ data stream</failure>