TopologyManager: Fix rename best-effort policy files

PR https://github.com/kubernetes/kubernetes/pull/80301 rename
the preferred policy to best-effort, but the files names are
still policy_preferred.go and policy_preferred_test.go. This
PR fix that.
This commit is contained in:
Moshe Levi 2019-07-28 13:09:25 +03:00
parent 23649560c0
commit 3b83c5c7c6
3 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ go_library(
srcs = [ srcs = [
"fake_topology_manager.go", "fake_topology_manager.go",
"policy.go", "policy.go",
"policy_best_effort.go",
"policy_none.go", "policy_none.go",
"policy_preferred.go",
"policy_strict.go", "policy_strict.go",
"topology_manager.go", "topology_manager.go",
], ],
@ -41,8 +41,8 @@ go_test(
name = "go_default_test", name = "go_default_test",
srcs = [ srcs = [
"fake_topology_manager_test.go", "fake_topology_manager_test.go",
"policy_best_effort_test.go",
"policy_none_test.go", "policy_none_test.go",
"policy_preferred_test.go",
"policy_strict_test.go", "policy_strict_test.go",
"topology_manager_test.go", "topology_manager_test.go",
], ],