Skip to content

Commit

Permalink
fix ref
Browse files Browse the repository at this point in the history
  • Loading branch information
super-harsh committed Aug 2, 2023
1 parent a2e9c6d commit f5354e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions v2/test/reconcile_policy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
. "github.com/onsi/gomega"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/Azure/azure-service-operator/v2/internal/reconcilers"
"github.com/Azure/azure-service-operator/v2/pkg/common/annotations"
"github.com/Azure/azure-service-operator/v2/pkg/common/reconciler"
"github.com/Azure/azure-service-operator/v2/pkg/genruntime"
"github.com/Azure/azure-service-operator/v2/pkg/genruntime/conditions"
)
Expand All @@ -28,7 +28,7 @@ func Test_ReconcilePolicy_SkipReconcile_DoesntCreateResourceInAzure(t *testing.T
// Create a resource group
rg := tc.NewTestResourceGroup()
rg.Annotations = map[string]string{
annotations.ReconcilePolicyAnnotation: string(reconcilers.ReconcilePolicySkip),
annotations.ReconcilePolicyAnnotation: string(reconciler.ReconcilePolicySkip),
}
tc.CreateResourceAndWaitForState(rg, metav1.ConditionFalse, conditions.ConditionSeverityWarning)

Expand Down

0 comments on commit f5354e6

Please sign in to comment.