Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
Signed-off-by: Venkat Ramaraju <venky2063@gmail.com>
  • Loading branch information
VenkatRamaraju committed Jul 29, 2021
1 parent 6942467 commit 98e539d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/helm/controller/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package controller
import (
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"sigs.k8s.io/controller-runtime/pkg/client/config"
Expand All @@ -39,5 +39,5 @@ func TestFilterPredicate(t *testing.T) {
cfg, _ := config.GetConfig()
mgr, _ := manager.New(cfg, manager.Options{})

assert.Equal(t, nil, Add(mgr, options), "Assert Add function returns nil after completion")
require.NoError(t, Add(mgr, options), "Add succeeds with simple label selector")
}

0 comments on commit 98e539d

Please sign in to comment.