This test was testing a non-gracceful kill od the daemon, after which it
started it again, however `d.Stop()` would log that the daemon wasn't running,
which is expected, so let's reduce noise;
docker_cli_network_unix_test.go:1143: [dadd2ae3b638b] daemon is not started
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
| ... | ... |
@@ -1140,7 +1140,7 @@ func (s *DockerNetworkSuite) TestDockerNetworkHostModeUngracefulDaemonRestart(c |
| 1140 | 1140 |
|
| 1141 | 1141 |
// Kill daemon ungracefully and restart |
| 1142 | 1142 |
assert.NilError(c, s.d.Kill()) |
| 1143 |
- s.d.Restart(c) |
|
| 1143 |
+ s.d.Start(c) |
|
| 1144 | 1144 |
|
| 1145 | 1145 |
// make sure all the containers are up and running |
| 1146 | 1146 |
for i := 0; i < 10; i++ {
|