Skip to content

Commit 0e48cf4

Browse files
committed
Remove unused const and methods
1 parent 1246366 commit 0e48cf4

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

internal/metadata/metadata_suite_test.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,3 @@ func TestResource(t *testing.T) {
2020
RegisterFailHandler(Fail)
2121
RunSpecs(t, "Metadata Suite")
2222
}
23-
24-
func testLabels(labels map[string]string) {
25-
ExpectWithOffset(1, labels).To(SatisfyAll(
26-
HaveKeyWithValue("foo", "bar"),
27-
HaveKeyWithValue("rabbitmq", "is-great"),
28-
HaveKeyWithValue("foo/app.kubernetes.io", "edgecase"),
29-
Not(HaveKey("app.kubernetes.io/foo")),
30-
))
31-
}

system_tests/system_tests.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,7 @@ import (
2323
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2424
)
2525

26-
const (
27-
clientServiceSuffix = "client"
28-
statefulSetSuffix = "server"
29-
)
26+
const statefulSetSuffix = "server"
3027

3128
var _ = Describe("Operator", func() {
3229
var (

0 commit comments

Comments
 (0)