diff --git a/client/client_test.go b/client/client_test.go index 86ebc48e11cd..2b54b8a0f08f 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -114,7 +114,6 @@ var allTests = []func(t *testing.T, sb integration.Sandbox){ testWhiteoutParentDir, testFrontendImageNaming, testDuplicateWhiteouts, - testSchema1Image, testMountWithNoSource, testInvalidExporter, testReadonlyRootFS, @@ -6898,24 +6897,6 @@ func testMoveParentDir(t *testing.T, sb integration.Sandbox) { require.True(t, ok) } -// #296 -func testSchema1Image(t *testing.T, sb integration.Sandbox) { - integration.SkipOnPlatform(t, "windows") - c, err := New(sb.Context(), sb.Address()) - require.NoError(t, err) - defer c.Close() - - st := llb.Image("gcr.io/google_containers/pause:3.0@sha256:0d093c962a6c2dd8bb8727b661e2b5f13e9df884af9945b4cc7088d9350cd3ee") - - def, err := st.Marshal(sb.Context()) - require.NoError(t, err) - - _, err = c.Solve(sb.Context(), def, SolveOpt{}, nil) - require.NoError(t, err) - - checkAllReleasable(t, c, sb, true) -} - // #319 func testMountWithNoSource(t *testing.T, sb integration.Sandbox) { integration.SkipOnPlatform(t, "windows")