From eef2c77a2612daafcbf4794ac9fa4a96d2c1f66a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Matczuk?= Date: Fri, 22 Sep 2017 14:30:04 +0200 Subject: [PATCH] test-fixtures renamed to testdata --- benchmark_test.go | 2 +- {test-fixtures => testdata}/people.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {test-fixtures => testdata}/people.json (100%) diff --git a/benchmark_test.go b/benchmark_test.go index f1fb353..1a1de7f 100644 --- a/benchmark_test.go +++ b/benchmark_test.go @@ -39,7 +39,7 @@ CREATE TABLE IF NOT EXISTS gocqlx_test.bench_person ( var benchPersonCols = []string{"id", "first_name", "last_name", "email", "gender", "ip_address"} func loadFixtures() []*benchPerson { - f, err := os.Open("test-fixtures/people.json") + f, err := os.Open("testdata/people.json") if err != nil { panic(err) } diff --git a/test-fixtures/people.json b/testdata/people.json similarity index 100% rename from test-fixtures/people.json rename to testdata/people.json