Part one of the grand rename: Task -> Pod

This commit is contained in:
Brendan Burns
2014-06-08 21:17:53 -07:00
parent 139be599e9
commit c8d493f532
18 changed files with 125 additions and 125 deletions

View File

@@ -73,9 +73,9 @@ func makeReplicationController(replicas int) ReplicationController {
}
func makeTaskList(count int) TaskList {
tasks := []Task{}
tasks := []Pod{}
for i := 0; i < count; i++ {
tasks = append(tasks, Task{
tasks = append(tasks, Pod{
JSONBase: JSONBase{
ID: fmt.Sprintf("task%d", i),
},