Skip to content

Commit

Permalink
Merge pull request kubernetes#19009 from fgrzadkowski/fix_e2e
Browse files Browse the repository at this point in the history
Fix e2e tests broken in kubernetes#17865
  • Loading branch information
fgrzadkowski committed Dec 22, 2015
2 parents 41aa6ce + 4ee0e7e commit e164098
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/e2e/latency.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ func runLatencyTest(nodeCount int, c *client.Client, ns string) {
selector := fields.Set{
"involvedObject.kind": "Pod",
"involvedObject.namespace": ns,
"source": "scheduler",
"source": api.DefaultSchedulerName,
}.AsSelector()
options := api.ListOptions{FieldSelector: selector}
schedEvents, err := c.Events(ns).List(options)
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/nodeoutofdisk.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ var _ = Describe("NodeOutOfDisk [Serial]", func() {
"involvedObject.kind": "Pod",
"involvedObject.name": pendingPodName,
"involvedObject.namespace": ns,
"source": "scheduler",
"source": api.DefaultSchedulerName,
"reason": "FailedScheduling",
}.AsSelector()
options := api.ListOptions{FieldSelector: selector}
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/scheduler_predicates.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func verifyResult(c *client.Client, podName string, ns string) {
"involvedObject.kind": "Pod",
"involvedObject.name": podName,
"involvedObject.namespace": ns,
"source": "scheduler",
"source": api.DefaultSchedulerName,
"reason": "FailedScheduling",
}.AsSelector()
options := api.ListOptions{FieldSelector: selector}
Expand Down

0 comments on commit e164098

Please sign in to comment.