From d591bb0421213c1bc427559c64b9657091a7243c Mon Sep 17 00:00:00 2001 From: "Paul \"TBBle\" Hampson" Date: Sun, 13 Dec 2020 21:03:51 +1100 Subject: [PATCH] Enable TestSnapshotterClient on Windows Signed-off-by: Paul "TBBle" Hampson --- integration/client/snapshot_test.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/integration/client/snapshot_test.go b/integration/client/snapshot_test.go index 1aca97147..81505d722 100644 --- a/integration/client/snapshot_test.go +++ b/integration/client/snapshot_test.go @@ -18,7 +18,6 @@ package client import ( "context" - "runtime" "testing" . "github.com/containerd/containerd" @@ -44,8 +43,5 @@ func TestSnapshotterClient(t *testing.T) { if testing.Short() { t.Skip() } - if runtime.GOOS == "windows" { - t.Skip("snapshots not yet supported on Windows") - } - testsuite.SnapshotterSuite(t, DefaultSnapshotter, newSnapshotter) + testsuite.SnapshotterSuite(t, "SnapshotterClient", newSnapshotter) }