test-fixtures renamed to testdata

This commit is contained in:
Michał Matczuk
2017-09-22 14:30:04 +02:00
parent 33a8025b32
commit eef2c77a26
2 changed files with 1 additions and 1 deletions

View File

@@ -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"} var benchPersonCols = []string{"id", "first_name", "last_name", "email", "gender", "ip_address"}
func loadFixtures() []*benchPerson { func loadFixtures() []*benchPerson {
f, err := os.Open("test-fixtures/people.json") f, err := os.Open("testdata/people.json")
if err != nil { if err != nil {
panic(err) panic(err)
} }