Skip to content

Commit d5c18df

Browse files
Use DefaultSnapshotter
Signed-off-by: Gabriel Adrian Samfira <[email protected]>
1 parent 8531793 commit d5c18df

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

integration/client/snapshot_unix_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ package client
2222
import (
2323
"testing"
2424

25+
. "github.com/containerd/containerd"
2526
"github.com/containerd/containerd/snapshots/testsuite"
2627
)
2728

@@ -30,5 +31,5 @@ func runTestSnapshotterClient(t *testing.T) {
3031
t.Skip()
3132
}
3233

33-
testsuite.SnapshotterSuite(t, "SnapshotterClient", newSnapshotter)
34+
testsuite.SnapshotterSuite(t, DefaultSnapshotter, newSnapshotter)
3435
}

integration/client/snapshot_windows_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ import (
2323
"testing"
2424

2525
winio "github.com/Microsoft/go-winio"
26+
27+
. "github.com/containerd/containerd"
2628
"github.com/containerd/containerd/snapshots/testsuite"
2729
)
2830

@@ -36,5 +38,5 @@ func runTestSnapshotterClient(t *testing.T) {
3638
t.Fatal(err)
3739
}
3840
defer winio.DisableProcessPrivileges([]string{winio.SeBackupPrivilege, winio.SeRestorePrivilege})
39-
testsuite.SnapshotterSuite(t, "SnapshotterClient", newSnapshotter)
41+
testsuite.SnapshotterSuite(t, DefaultSnapshotter, newSnapshotter)
4042
}

0 commit comments

Comments
 (0)