Sebastiaan van Stijn

Results 2346 comments of Sebastiaan van Stijn

Would `assert.Equal()` satisfy your use case? ```go func TestAreYouTheSame(t *testing.T) { a := 1 assert.Equal(t, a, 2) } ``` Produces: ``` === RUN TestAreYouTheSame --- FAIL: TestAreYouTheSame (0.00s) bla_test.go:16: assertion...

Or, if you need `assert.Check`; ```go func TestAreYouTheSame(t *testing.T) { a := 1 assert.Check(t, cmp.Equal(a, 2)) assert.Equal(t, a, 2) } ``` ``` === RUN TestAreYouTheSame --- FAIL: TestAreYouTheSame (0.00s) bla_test.go:16:...

Packages for docker 19.03.12 should now be up on download.docker.com, and contain a fix for this (it will now log a warning, but not fail to start the daemon).

@sakaki- wow, that's big news! Congratulations on the new position!

Looks like the Jenkins Docker plugin is not ready for multi-stage builds; ``` GitHub has been notified of this commitโ€™s build result java.io.IOException: Cannot retrieve .Id from 'docker inspect base...

Hm. I guess the jenkins fix won't resolve this, as `docker inspect base` would still fail ๐Ÿ˜ž Probably rewriting / changing CI would be needed to make this work

ping @rexxars PTAL; looks like we're currently maintaining a fork because of this ~fix~ enhancement missing in the upstream repository ๐Ÿ˜“ would be great to see this merged so that...

@rumpl could you do a rebase to trigger CI?

๐Ÿ‘ just ran into this issue when debugging why some links were not handled correctly, but others did, and came to the same conclusion that it was due to those...