Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Manik2708 <[email protected]>
  • Loading branch information
Manik2708 committed Feb 13, 2025
1 parent d61ccd0 commit a6db745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/es/client/index_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ func testIndexOrAliasExistence(t *testing.T, existence string) {
exists, err = c.AliasExists("jaeger-span")
}
if test.expectedErr != "" {
assert.ErrorContains(t, err, test.expectedErr)
require.ErrorContains(t, err, test.expectedErr)
} else {
require.NoError(t, err)
}
Expand Down

0 comments on commit a6db745

Please sign in to comment.