From a061b1e2d8f6117b0524e44de7b6bc391245864e Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 24 May 2018 02:39:56 +0200 Subject: [PATCH] Adjust API version to match correct release This fix was not yet included in Docker 17.05, so API version v1.37 was not the right selector (Docker 18.03, 18.04 and 18.05 all support API v1.37). We should change these checks for engine versions, or use a different method to skip tests when running against older engines. Signed-off-by: Sebastiaan van Stijn --- integration/build/build_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/build/build_test.go b/integration/build/build_test.go index 83d992d14f..ee9631d3ff 100644 --- a/integration/build/build_test.go +++ b/integration/build/build_test.go @@ -175,7 +175,7 @@ func TestBuildMultiStageParentConfig(t *testing.T) { // Test cases in #36996 func TestBuildLabelWithTargets(t *testing.T) { - skip.If(t, versions.LessThan(testEnv.DaemonAPIVersion(), "1.37"), "test added after 1.37") + skip.If(t, versions.LessThan(testEnv.DaemonAPIVersion(), "1.38"), "test added after 1.38") bldName := "build-a" testLabels := map[string]string{ "foo": "bar",