Skip to content

Commit e539114

Browse files
Apply suggestions from code review
1 parent 6e67a18 commit e539114

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

internal/rest-client/pods_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ func TestPods(t *testing.T) {
3636
t.Run("pods_1", func(t *testing.T) {
3737
defer server.Close()
3838
c := NewRestClient(e, "fake-api-token", "latest", "test-user-agent-string", "test-X-Request-Id-string", false)
39-
4039
pl := c.GetPods()
4140
if diff := cmp.Diff(pl.Items, pods.Items); diff != "" {
4241
t.Errorf("Mismatch (-want +got):\n%s", diff)

internal/rest-client/subscriptions_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ func TestSubscriptions(t *testing.T) {
3636
t.Run("subscriptions_1", func(t *testing.T) {
3737
defer server.Close()
3838
c := NewRestClient(e, "fake-api-token", "latest", "test-user-agent-string", "test-X-Request-Id-string", false)
39-
4039
vpl := c.GetSubscriptions()
4140
if diff := cmp.Diff(vpl.Items, subs.Items); diff != "" {
4241
t.Errorf("Mismatch (-want +got):\n%s", diff)

internal/rest-client/volumes_performance_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ func TestVolumesPerformance(t *testing.T) {
3636
t.Run("volumes_performance_1", func(t *testing.T) {
3737
defer server.Close()
3838
c := NewRestClient(e, "fake-api-token", "latest", "test-user-agent-string", "test-X-Request-Id-string", false)
39-
4039
vpl := c.GetVolumesPerformance()
4140
if diff := cmp.Diff(vpl.Items, volsp.Items); diff != "" {
4241
t.Errorf("Mismatch (-want +got):\n%s", diff)

0 commit comments

Comments
 (0)