client: Rename ContainerUnPause* to ContainerUnpause*

To better match the method name itself

Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
This commit is contained in:
Paweł Gronowski
2025-10-29 11:32:32 +01:00
parent d3eb04fe59
commit fc97a2ff0d
8 changed files with 25 additions and 25 deletions

View File

@@ -375,7 +375,7 @@ func (s *DockerAPISuite) TestContainerAPIPause(c *testing.T) {
c.Fatalf("there should be one paused container and not %d", len(pausedContainers))
}
_, err = apiClient.ContainerUnpause(testutil.GetContext(c), ContainerID, client.ContainerUnPauseOptions{})
_, err = apiClient.ContainerUnpause(testutil.GetContext(c), ContainerID, client.ContainerUnpauseOptions{})
assert.NilError(c, err)
pausedContainers = getPaused(c)