Skip to content

Commit 2056dbc

Browse files
authored
Merge pull request kubernetes#129697 from saza-ku/remove-pvc-not-found
chore: remove duplicated test case of `pvc not found`
2 parents 659c437 + e26fb1c commit 2056dbc

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -238,20 +238,6 @@ func TestVolumeBinding(t *testing.T) {
238238
},
239239
wantPreScoreStatus: framework.NewStatus(framework.Skip),
240240
},
241-
{
242-
name: "pvc not found",
243-
pod: makePod("pod-a").withPVCVolume("pvc-a", "").Pod,
244-
nodes: []*v1.Node{
245-
makeNode("node-a").Node,
246-
},
247-
wantPreFilterStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable, `persistentvolumeclaim "pvc-a" not found`),
248-
wantFilterStatus: []*framework.Status{
249-
nil,
250-
},
251-
wantScores: []int64{
252-
0,
253-
},
254-
},
255241
{
256242
name: "pv not found",
257243
pod: makePod("pod-a").withPVCVolume("pvc-a", "").Pod,

0 commit comments

Comments
 (0)