From ac30eabbdcd3946155ab449d29e182c5a6290f1c Mon Sep 17 00:00:00 2001 From: "Paul \"TBBle\" Hampson" Date: Wed, 13 Jan 2021 04:13:45 +1100 Subject: [PATCH] Fix misspelling of 'Native' as 'Naive' Signed-off-by: Paul "TBBle" Hampson --- snapshots/native/native_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/snapshots/native/native_test.go b/snapshots/native/native_test.go index 79e02637d..4f48e6a76 100644 --- a/snapshots/native/native_test.go +++ b/snapshots/native/native_test.go @@ -35,10 +35,10 @@ func newSnapshotter(ctx context.Context, root string) (snapshots.Snapshotter, fu return snapshotter, func() error { return snapshotter.Close() }, nil } -func TestNaive(t *testing.T) { +func TestNative(t *testing.T) { if runtime.GOOS == "windows" { - t.Skip("snapshotter not implemented on windows") + t.Skip("Native snapshotter not implemented on windows") } testutil.RequiresRoot(t) - testsuite.SnapshotterSuite(t, "Naive", newSnapshotter) + testsuite.SnapshotterSuite(t, "Native", newSnapshotter) }