mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
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 <github@gone.nl>
This commit is contained in:
parent
df5175e1ee
commit
a061b1e2d8
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue