Fix misspelling of 'Native' as 'Naive'

Signed-off-by: Paul "TBBle" Hampson <Paul.Hampson@Pobox.com>
This commit is contained in:
Paul "TBBle" Hampson 2021-01-13 04:13:45 +11:00 committed by Gabriel Adrian Samfira
parent 639c5799a2
commit ac30eabbdc

View File

@ -35,10 +35,10 @@ func newSnapshotter(ctx context.Context, root string) (snapshots.Snapshotter, fu
return snapshotter, func() error { return snapshotter.Close() }, nil return snapshotter, func() error { return snapshotter.Close() }, nil
} }
func TestNaive(t *testing.T) { func TestNative(t *testing.T) {
if runtime.GOOS == "windows" { if runtime.GOOS == "windows" {
t.Skip("snapshotter not implemented on windows") t.Skip("Native snapshotter not implemented on windows")
} }
testutil.RequiresRoot(t) testutil.RequiresRoot(t)
testsuite.SnapshotterSuite(t, "Naive", newSnapshotter) testsuite.SnapshotterSuite(t, "Native", newSnapshotter)
} }