Skip to content

Commit

Permalink
integration-cli: fix printf verbs of wrong types
Browse files Browse the repository at this point in the history
Signed-off-by: Soshi Katsuta <katsuta_soshi@cyberagent.co.jp>
  • Loading branch information
Soshi Katsuta committed Aug 19, 2015
1 parent 3dc30d4 commit 5759b95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integration-cli/docker_cli_create_test.go
Expand Up @@ -122,7 +122,7 @@ func (s *DockerSuite) TestCreateWithPortRange(c *check.C) {
c.Fatalf("Expected 1 ports binding, for the port %s but found %s", k, v)
}
if k.Port() != v[0].HostPort {
c.Fatalf("Expected host port %d to match published port %d", k.Port(), v[0].HostPort)
c.Fatalf("Expected host port %s to match published port %s", k.Port(), v[0].HostPort)
}
}

Expand Down Expand Up @@ -161,7 +161,7 @@ func (s *DockerSuite) TestCreateWithiLargePortRange(c *check.C) {
c.Fatalf("Expected 1 ports binding, for the port %s but found %s", k, v)
}
if k.Port() != v[0].HostPort {
c.Fatalf("Expected host port %d to match published port %d", k.Port(), v[0].HostPort)
c.Fatalf("Expected host port %s to match published port %s", k.Port(), v[0].HostPort)
}
}

Expand Down
2 changes: 1 addition & 1 deletion integration-cli/docker_cli_run_test.go
Expand Up @@ -1895,7 +1895,7 @@ func (s *DockerSuite) TestRunAllowPortRangeThroughExpose(c *check.C) {
c.Fatalf("Port %d is out of range ", portnum)
}
if binding == nil || len(binding) != 1 || len(binding[0].HostPort) == 0 {
c.Fatalf("Port is not mapped for the port %d", port)
c.Fatalf("Port is not mapped for the port %s", port)
}
}
}
Expand Down

0 comments on commit 5759b95

Please sign in to comment.