Fix assertion in dns tests wrt changed docker json API #27489

This commit is contained in:
Johannes Rudolph 2019-08-14 16:24:11 +02:00 committed by Johan Andrén
parent 251fdff519
commit a19bd1597a

View file

@ -70,7 +70,7 @@ trait DockerBindDnsService extends Eventually { self: AkkaSpec =>
})
val creation = client.createContainer(containerConfig, containerName)
creation.warnings() should be(null)
creation.warnings() should be(null).or(have(size(0)))
id = Some(creation.id())
client.startContainer(creation.id())