Skip to content

Commit 4a3052e

Browse files
whites11claude
andcommitted
fix(e2e): use proto.String instead of nonexistent shared.Ptr
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6e5f49d commit 4a3052e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

flow/e2e/clickhouse_tls_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"testing"
77

88
"github.com/stretchr/testify/require"
9+
"google.golang.org/protobuf/proto"
910

1011
connclickhouse "github.com/PeerDB-io/peerdb/flow/connectors/clickhouse"
1112
"github.com/PeerDB-io/peerdb/flow/generated/protos"
12-
"github.com/PeerDB-io/peerdb/flow/shared"
1313
)
1414

1515
// TestClickHouseTLSDirectory verifies that connclickhouse.Connect works
@@ -33,7 +33,7 @@ func TestClickHouseTLSDirectory(t *testing.T) {
3333
User: "peerdb_tls",
3434
Database: "default",
3535
DisableTls: false,
36-
TlsCertificateDirectory: shared.Ptr(certDir),
36+
TlsCertificateDirectory: proto.String(certDir),
3737
}
3838

3939
conn, err := connclickhouse.Connect(t.Context(), nil, config)

0 commit comments

Comments
 (0)