Fix misspelling of condition.

Signed-off-by: JUN YANG <yang.jun22@zte.com.cn>
This commit is contained in:
JUN YANG
2021-03-14 00:17:58 +08:00
committed by JunYang
parent 3b5d809eed
commit 6c566f6dfa
2 changed files with 15 additions and 15 deletions

View File

@@ -28,10 +28,10 @@ import (
)
type conditionMergeTestCase struct {
description string
pvc *v1.PersistentVolumeClaim
newConditions []v1.PersistentVolumeClaimCondition
finalCondtions []v1.PersistentVolumeClaimCondition
description string
pvc *v1.PersistentVolumeClaim
newConditions []v1.PersistentVolumeClaimCondition
finalConditions []v1.PersistentVolumeClaimCondition
}
func TestMergeResizeCondition(t *testing.T) {
@@ -52,10 +52,10 @@ func TestMergeResizeCondition(t *testing.T) {
testCases := []conditionMergeTestCase{
{
description: "when removing all conditions",
pvc: pvc.DeepCopy(),
newConditions: []v1.PersistentVolumeClaimCondition{},
finalCondtions: []v1.PersistentVolumeClaimCondition{},
description: "when removing all conditions",
pvc: pvc.DeepCopy(),
newConditions: []v1.PersistentVolumeClaimCondition{},
finalConditions: []v1.PersistentVolumeClaimCondition{},
},
{
description: "adding new condition",
@@ -66,7 +66,7 @@ func TestMergeResizeCondition(t *testing.T) {
Status: v1.ConditionTrue,
},
},
finalCondtions: []v1.PersistentVolumeClaimCondition{
finalConditions: []v1.PersistentVolumeClaimCondition{
{
Type: v1.PersistentVolumeClaimFileSystemResizePending,
Status: v1.ConditionTrue,
@@ -83,7 +83,7 @@ func TestMergeResizeCondition(t *testing.T) {
LastTransitionTime: newTime,
},
},
finalCondtions: []v1.PersistentVolumeClaimCondition{
finalConditions: []v1.PersistentVolumeClaimCondition{
{
Type: v1.PersistentVolumeClaimResizing,
Status: v1.ConditionTrue,
@@ -101,7 +101,7 @@ func TestMergeResizeCondition(t *testing.T) {
LastTransitionTime: conditionFalseTime,
},
},
finalCondtions: []v1.PersistentVolumeClaimCondition{
finalConditions: []v1.PersistentVolumeClaimCondition{
{
Type: v1.PersistentVolumeClaimResizing,
Status: v1.ConditionFalse,
@@ -119,7 +119,7 @@ func TestMergeResizeCondition(t *testing.T) {
LastTransitionTime: currentTime,
},
},
finalCondtions: []v1.PersistentVolumeClaimCondition{
finalConditions: []v1.PersistentVolumeClaimCondition{
{
Type: v1.PersistentVolumeClaimResizing,
Status: v1.ConditionTrue,
@@ -133,10 +133,10 @@ func TestMergeResizeCondition(t *testing.T) {
updatePVC := MergeResizeConditionOnPVC(testcase.pvc, testcase.newConditions)
updateConditions := updatePVC.Status.Conditions
if !reflect.DeepEqual(updateConditions, testcase.finalCondtions) {
if !reflect.DeepEqual(updateConditions, testcase.finalConditions) {
t.Errorf("Expected updated conditions for test %s to be %v but got %v",
testcase.description,
testcase.finalCondtions, updateConditions)
testcase.finalConditions, updateConditions)
}
}