Revert making UniversalExecutor.wait() platform specific

This commit is contained in:
Sean Chittenden
2016-05-08 00:13:28 -07:00
parent b53183a332
commit 22aecf1402

View File

@@ -758,7 +758,7 @@ func TestDockerUser(t *testing.T) {
"linux spec user: Unable to find user alice",
}
var found bool
for msg := range msgs {
for _, msg := range msgs {
if strings.Contains(err.Error(), msg) {
found = true
break