-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix false positive goleak test (#5315)
## Which problem is this PR solving? - The testutils package itself was being flagged as missing goleak check. The check was there, but without the package name, and the lint script was flagging it as false positive. - Similar issue in `pkg/cassandra/gocql/testutils` - Part of #5006 ## Description of the changes 1. Change package name of the test file so that the functions can be called with the usual package package name `testutils`. 2. change competing `testutils` import labels to satisfy the linter ## How was this change tested? - `make goleak` no longer shows this package --------- Signed-off-by: Yuri Shkuro <[email protected]>
- Loading branch information
1 parent
34f6a25
commit 727bf18
Showing
2 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters