From 269cba242894faf6a536e92239198d2b2cf7ddb0 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Tue, 26 Mar 2019 01:54:31 +0000 Subject: [PATCH] Small gofmt fix This PR is a small gofmt fix of https://goreportcard.com/report/github.com/moby/moby#gofmt ``` gofmt99% Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command moby/integration-cli/docker_cli_run_test.go Line 1: warning: file is not gofmted with -s (gofmt) ``` Signed-off-by: Yong Tang --- integration-cli/docker_cli_run_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go index 0a6d0a763f..fcecf332f3 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -1887,7 +1887,7 @@ func (s *DockerSuite) TestRunBindMounts(c *check.C) { if testEnv.OSType == "windows" { // Disabled prior to RS5 due to how volumes are mapped - testRequires(c, DaemonIsWindowsAtLeastBuild(17763)) + testRequires(c, DaemonIsWindowsAtLeastBuild(17763)) } prefix, _ := getPrefixAndSlashFromDaemonPlatform()