aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/data/get_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/data/get_test.go')
-rw-r--r--pkg/data/get_test.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/pkg/data/get_test.go b/pkg/data/get_test.go
index 4cadc76..aa1e43e 100644
--- a/pkg/data/get_test.go
+++ b/pkg/data/get_test.go
@@ -29,13 +29,6 @@ func singleDoc(t *testing.T) *sql.DB {
}
if _, err := db.Exec(`
- INSERT INTO Aliases (authorId, alias)
- VALUES (1,"pj"), (1,"JP")
- `); err != nil {
- t.Fatal("err inserting aliases:", err)
- }
-
- if _, err := db.Exec(`
INSERT INTO Tags (name)
VALUES ("foo"), ("bar"), ("baz"), ("oof")
`); err != nil {
@@ -86,13 +79,6 @@ func multiDoc(t *testing.T) *sql.DB {
}
if _, err := db.Exec(`
- INSERT INTO Aliases (authorId, alias)
- VALUES (1,"pj"), (1,"JP")
- `); err != nil {
- t.Fatal("err inserting aliases:", err)
- }
-
- if _, err := db.Exec(`
INSERT INTO Tags (name)
VALUES ("foo"), ("bar"), ("baz"), ("oof")
`); err != nil {