integration-cli: prevent out of range in TestEventsContainerEvents
Prevents the test from panicking;
```
--- FAIL: TestDockerSuite/TestEventsContainerEvents (1.19s)
suite.go:65: test suite panicked: runtime error: slice bounds out of range [:5] with capacity 4
goroutine 3978 [running]:
runtime/debug.Stack(0xc0026e3908, 0x1ad9bc0, 0xc0008100c0)
/usr/local/go/src/runtime/debug/stack.go:24 +0x9d
github.com/docker/docker/internal/test/suite.failOnPanic(0xc00185e600)
/go/src/github.com/docker/docker/internal/test/suite/suite.go:65 +0x57
panic(0x1ad9bc0, 0xc0008100c0)
/usr/local/go/src/runtime/panic.go:679 +0x1b2
github.com/docker/docker/integration-cli.(*DockerSuite).TestEventsContainerEvents(0x2f7d7a8, 0xc00185e600)
/go/src/github.com/docker/docker/integration-cli/docker_cli_events_test.go:89 +0x3c5
reflect.Value.call(0xc0000c4f00, 0xc0008036c0, 0x13, 0x1bfd18b, 0x4, 0xc000e8df30, 0x2, 0x2, 0xc00075c618, 0x40d903, ...)
/usr/local/go/src/reflect/value.go:460 +0x5f6
reflect.Value.Call(0xc0000c4f00, 0xc0008036c0, 0x13, 0xc00075c730, 0x2, 0x2, 0xf, 0x0, 0x0)
/usr/local/go/src/reflect/value.go:321 +0xb4
github.com/docker/docker/internal/test/suite.Run.func2(0xc00185e600)
/go/src/github.com/docker/docker/internal/test/suite/suite.go:57 +0x2c2
testing.tRunner(0xc00185e600, 0xc0008dbea0)
/usr/local/go/src/testing/testing.go:909 +0xc9
created by testing.(*T).Run
/usr/local/go/src/testing/testing.go:960 +0x350
```
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>