Skip to content

Commit

Permalink
chore: fix some function names (#14020)
Browse files Browse the repository at this point in the history
Signed-off-by: dropbigfish <fillfish@foxmail.com>
Co-authored-by: Christian Haudum <christian.haudum@gmail.com>
Co-authored-by: Cyril Tovena <cyril.tovena@gmail.com>
  • Loading branch information
3 people authored Sep 10, 2024
1 parent c5083c7 commit 5f78784
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/bloombuild/planner/retention_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ func putMetasForLastNDays(t *testing.T, schemaCfg storageconfig.SchemaConfig, bl
}
}

// getMetasForLastNDays returns groups of continuous metas for the last N days.
// getGroupedMetasForLastNDays returns groups of continuous metas for the last N days.
func getGroupedMetasForLastNDays(t *testing.T, bloomStore *bloomshipper.BloomStore, tenant string, start model.Time, days int) [][][]bloomshipper.Meta {
metasGrouped := make([][][]bloomshipper.Meta, 0)
currentGroup := make([][]bloomshipper.Meta, 0)
Expand Down
4 changes: 2 additions & 2 deletions pkg/storage/chunk/client/grpc/grpc_server_mock_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func NewTestStorageClient(cfg Config, schemaCfg config.SchemaConfig) (*StorageCl

//*********************** gRPC mock server *********************************//

// NewTableClient returns a new TableClient.
// NewTestTableClient returns a new TableClient.
func NewTestTableClient(cfg Config) (*TableClient, error) {
grpcClient, _, err := connectToGrpcServer(cfg.Address)
if err != nil {
Expand All @@ -155,7 +155,7 @@ func NewTestTableClient(cfg Config) (*TableClient, error) {
return client, nil
}

// NewStorageClient returns a new StorageClient.
// newTestStorageServer returns a new StorageServer.
func newTestStorageServer(cfg Config) *server {
client := &server{
Cfg: cfg,
Expand Down

0 comments on commit 5f78784

Please sign in to comment.