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 <yong.tang.github@outlook.com>
| ... | ... |
@@ -1887,7 +1887,7 @@ func (s *DockerSuite) TestRunBindMounts(c *check.C) {
|
| 1887 | 1887 |
|
| 1888 | 1888 |
if testEnv.OSType == "windows" {
|
| 1889 | 1889 |
// Disabled prior to RS5 due to how volumes are mapped |
| 1890 |
- testRequires(c, DaemonIsWindowsAtLeastBuild(17763)) |
|
| 1890 |
+ testRequires(c, DaemonIsWindowsAtLeastBuild(17763)) |
|
| 1891 | 1891 |
} |
| 1892 | 1892 |
|
| 1893 | 1893 |
prefix, _ := getPrefixAndSlashFromDaemonPlatform() |