Skip to content

Commit 010f5d8

Browse files
committed
fixup
1 parent f5c727c commit 010f5d8

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

provider/pkg/provider/provider.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2016-2023, Pulumi Corporation.
1+
// Copyright 2016-2025, Pulumi Corporation.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -50,9 +50,9 @@ import (
5050
"github.com/pulumi/pulumi-kubernetes/provider/v4/pkg/ssa"
5151
"github.com/pulumi/pulumi-kubernetes/provider/v4/pkg/version"
5252
pulumischema "github.com/pulumi/pulumi/pkg/v3/codegen/schema"
53-
"github.com/pulumi/pulumi/pkg/v3/resource/deploy/providers"
5453
"github.com/pulumi/pulumi/pkg/v3/resource/provider"
5554
"github.com/pulumi/pulumi/sdk/v3/go/common/diag"
55+
"github.com/pulumi/pulumi/sdk/v3/go/common/providers"
5656
"github.com/pulumi/pulumi/sdk/v3/go/common/resource"
5757
"github.com/pulumi/pulumi/sdk/v3/go/common/resource/plugin"
5858
"github.com/pulumi/pulumi/sdk/v3/go/common/util/contract"

provider/pkg/provider/provider_checkconfig_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
. "github.com/onsi/gomega"
2323
clientcmdapi "k8s.io/client-go/tools/clientcmd/api"
2424

25-
"github.com/pulumi/pulumi/pkg/v3/resource/deploy/providers"
25+
"github.com/pulumi/pulumi/sdk/v3/go/common/providers"
2626
"github.com/pulumi/pulumi/sdk/v3/go/common/resource"
2727
"github.com/pulumi/pulumi/sdk/v3/go/common/resource/plugin"
2828
pulumirpc "github.com/pulumi/pulumi/sdk/v3/proto/go"

tests/sdk/nodejs/nodejs_test.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ import (
3737
"github.com/pulumi/pulumi-kubernetes/tests/v4"
3838
pulumirpctesting "github.com/pulumi/pulumi-kubernetes/tests/v4/pulumirpc"
3939
"github.com/pulumi/pulumi/pkg/v3/engine"
40-
"github.com/pulumi/pulumi/pkg/v3/resource/deploy/providers"
4140
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
4241
"github.com/pulumi/pulumi/sdk/v3/go/common/apitype"
42+
"github.com/pulumi/pulumi/sdk/v3/go/common/providers"
4343
"github.com/pulumi/pulumi/sdk/v3/go/common/resource"
4444
"github.com/pulumi/pulumi/sdk/v3/go/common/tokens"
4545
"github.com/pulumi/pulumi/sdk/v3/go/common/util/contract"
@@ -1090,7 +1090,6 @@ func TestProvider(t *testing.T) {
10901090

10911091
// TestReadonlyMetadata tests the behavior of read-only metadata fields.
10921092
func TestReadonlyMetadata(t *testing.T) {
1093-
10941093
test := baseOptions.With(integration.ProgramTestOptions{
10951094
Dir: filepath.Join("metadata", "step1"),
10961095
Quick: true,
@@ -1379,7 +1378,6 @@ func TestSecretDataNewLine(t *testing.T) {
13791378

13801379
assert.NotEmptyf(t, data, "data field is empty")
13811380
assert.Emptyf(t, stringData, "stringData field is not empty")
1382-
13831381
},
13841382
EditDirs: []integration.EditDir{{
13851383
Dir: "secrets-new-line",
@@ -2390,7 +2388,6 @@ func TestOptionPropagation(t *testing.T) {
23902388
Quick: true,
23912389
ExpectRefreshChanges: false,
23922390
ExtraRuntimeValidation: func(t *testing.T, stackInfo integration.RuntimeValidationStackInfo) {
2393-
23942391
// lookup some resources for later use
23952392
providerA := tests.SearchResourcesByName(stackInfo, "", "pulumi:providers:kubernetes", "a")
23962393
require.NotNil(t, providerA)

tests/sdk/python/python_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ import (
3333
"github.com/pulumi/pulumi-kubernetes/tests/v4"
3434
pulumirpctesting "github.com/pulumi/pulumi-kubernetes/tests/v4/pulumirpc"
3535
"github.com/pulumi/pulumi/pkg/v3/engine"
36-
"github.com/pulumi/pulumi/pkg/v3/resource/deploy/providers"
3736
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
3837
"github.com/pulumi/pulumi/sdk/v3/go/common/apitype"
38+
"github.com/pulumi/pulumi/sdk/v3/go/common/providers"
3939
"github.com/pulumi/pulumi/sdk/v3/go/common/resource"
4040
"github.com/pulumi/pulumi/sdk/v3/go/common/tokens"
4141
"github.com/pulumi/pulumi/sdk/v3/go/common/util/contract"
@@ -361,7 +361,6 @@ func TestGuestbook(t *testing.T) {
361361
integration.ProgramTest(t, &options)
362362
})
363363
}
364-
365364
}
366365

367366
// Smoke test for first-class Kubernetes providers.
@@ -645,7 +644,6 @@ func TestOptionPropagation(t *testing.T) {
645644
Quick: true,
646645
ExpectRefreshChanges: false,
647646
ExtraRuntimeValidation: func(t *testing.T, stackInfo integration.RuntimeValidationStackInfo) {
648-
649647
// lookup some resources for later use
650648
providerA := tests.SearchResourcesByName(stackInfo, "", "pulumi:providers:kubernetes", "a")
651649
require.NotNil(t, providerA)

0 commit comments

Comments
 (0)