mirror of
https://github.com/kubernetes/client-go.git
synced 2025-08-28 19:53:00 +00:00
gofmt and review feedback
Kubernetes-commit: 2180b441dd748bcaf9c1c8a28d20f6565e14f189
This commit is contained in:
parent
706156ceaf
commit
048fbed845
@ -278,6 +278,8 @@ func TestUpdateWithNilLabelsOnLease(t *testing.T) {
|
||||
t.Fatalf("Failed to get lease: %v", err)
|
||||
}
|
||||
|
||||
leaseLock.lease.Labels = nil
|
||||
|
||||
leaseLock.Labels = map[string]string{"custom-key": "custom-val"}
|
||||
|
||||
// Update should succeed even with nil Labels on the lease itself
|
||||
@ -286,7 +288,6 @@ func TestUpdateWithNilLabelsOnLease(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
func TestUpdateWithNilLabelsOnLeaseLock(t *testing.T) {
|
||||
setup()
|
||||
|
||||
@ -299,6 +300,8 @@ func TestUpdateWithNilLabelsOnLeaseLock(t *testing.T) {
|
||||
t.Fatalf("Failed to get lease: %v", err)
|
||||
}
|
||||
|
||||
leaseLock.Labels = nil
|
||||
|
||||
leaseLock.lease.Labels = map[string]string{"custom-key": "custom-val"}
|
||||
|
||||
// Update should succeed even with nil Labels on the leaselock
|
||||
@ -371,4 +374,4 @@ func TestLabelUpdate(t *testing.T) {
|
||||
if val != "custom-val-2" {
|
||||
t.Errorf("Label value mismatch, got %q want %q", val, "custom-val-2")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user