Skip to content

Commit

Permalink
Add missing ',' before newline -- test pass
Browse files Browse the repository at this point in the history
  • Loading branch information
kelseyhightower committed Dec 4, 2013
1 parent df2ee92 commit fb3ab27
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions etcd/etcdutil/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ func TestGetValues(t *testing.T) {
Dir: true,
Value: "",
Nodes: etcd.Nodes{
etcd.Node{Key: "/foo/three/bar", Value: "three_bar", Dir: false}
}
}
}
}
etcd.Node{Key: "/foo/three/bar", Value: "three_bar", Dir: false},
},
},
},
},
}
quuxResp := &etcd.Response{
Action: "GET",
Node: &etcd.Node{Key:"/quux", Dir: false, Value: "foo"}
Node: &etcd.Node{Key:"/quux", Dir: false, Value: "foo"},
}
nginxResp := &etcd.Response{
Action: "GET",
Expand All @@ -70,9 +70,9 @@ func TestGetValues(t *testing.T) {
Dir: true,
Nodes: etcd.Nodes{
etcd.Node{Key: "/nginx/port", Dir: false, Value: "443"},
etcd.Node{Key: "/nginx/worker_processes", Dir: false, Value: "4"}
}
}
etcd.Node{Key: "/nginx/worker_processes", Dir: false, Value: "4"},
},
},
}

c.AddResponse("/foo", fooResp)
Expand Down

0 comments on commit fb3ab27

Please sign in to comment.