1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-28 22:57:35 +01:00

Fix typo in function name

This commit is contained in:
Andreas Kohn
2020-02-04 10:03:08 +01:00
parent 861f057d1b
commit c3346e9806
3 changed files with 6 additions and 6 deletions

View File

@@ -69,7 +69,7 @@ func TestReadyNodesWithNodeSelector(t *testing.T) {
}
}
func TestIsNodeUschedulable(t *testing.T) {
func TestIsNodeUnschedulable(t *testing.T) {
tests := []struct {
description string
node *v1.Node
@@ -91,7 +91,7 @@ func TestIsNodeUschedulable(t *testing.T) {
},
}
for _, test := range tests {
actualUnSchedulable := IsNodeUschedulable(test.node)
actualUnSchedulable := IsNodeUnschedulable(test.node)
if actualUnSchedulable != test.IsUnSchedulable {
t.Errorf("Test %#v failed", test.description)
}