From da21606644128ef0fd418a132e901e7dc1ab1c56 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Fri, 25 Nov 2016 14:48:10 -0800 Subject: [PATCH] Move chinook package to idiomatic testdata dir https://github.com/golang/go/issues/14715 --- store/store_test.go | 2 +- {chinook => testdata/chinook}/LICENSE | 0 {chinook => testdata/chinook}/db.go | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename {chinook => testdata/chinook}/LICENSE (100%) rename {chinook => testdata/chinook}/db.go (100%) diff --git a/store/store_test.go b/store/store_test.go index 4b4a8f9b..b75b5de5 100644 --- a/store/store_test.go +++ b/store/store_test.go @@ -12,7 +12,7 @@ import ( "testing" "time" - "github.com/rqlite/rqlite/chinook" + "github.com/rqlite/rqlite/testdata/chinook" ) type mockSnapshotSink struct { diff --git a/chinook/LICENSE b/testdata/chinook/LICENSE similarity index 100% rename from chinook/LICENSE rename to testdata/chinook/LICENSE diff --git a/chinook/db.go b/testdata/chinook/db.go similarity index 100% rename from chinook/db.go rename to testdata/chinook/db.go