A recent change fixed integration tests to use "API" in test names
instead of "Api". A new test was added in a PR opened before this
change, and didn't benefit from the cleanup. Fix its name.
Signed-off-by: Aaron Lehmann <aaron.lehmann@docker.com>
| ... | ... |
@@ -329,7 +329,7 @@ func (s *DockerSwarmSuite) TestAPISwarmServicesUpdate(c *check.C) {
|
| 329 | 329 |
map[string]int{image1: instances})
|
| 330 | 330 |
} |
| 331 | 331 |
|
| 332 |
-func (s *DockerSwarmSuite) TestApiSwarmServicesFailedUpdate(c *check.C) {
|
|
| 332 |
+func (s *DockerSwarmSuite) TestAPISwarmServicesFailedUpdate(c *check.C) {
|
|
| 333 | 333 |
const nodeCount = 3 |
| 334 | 334 |
var daemons [nodeCount]*SwarmDaemon |
| 335 | 335 |
for i := 0; i < nodeCount; i++ {
|