Enable TestSnapshotterClient on Windows

Signed-off-by: Paul "TBBle" Hampson <Paul.Hampson@Pobox.com>
This commit is contained in:
Paul "TBBle" Hampson 2020-12-13 21:03:51 +11:00 committed by Gabriel Adrian Samfira
parent 7b36becd2d
commit d591bb0421

View File

@ -18,7 +18,6 @@ package client
import ( import (
"context" "context"
"runtime"
"testing" "testing"
. "github.com/containerd/containerd" . "github.com/containerd/containerd"
@ -44,8 +43,5 @@ func TestSnapshotterClient(t *testing.T) {
if testing.Short() { if testing.Short() {
t.Skip() t.Skip()
} }
if runtime.GOOS == "windows" { testsuite.SnapshotterSuite(t, "SnapshotterClient", newSnapshotter)
t.Skip("snapshots not yet supported on Windows")
}
testsuite.SnapshotterSuite(t, DefaultSnapshotter, newSnapshotter)
} }