From 191abde636c1fa06676a167f2bbb9700478a2771 Mon Sep 17 00:00:00 2001 From: seanwelch Date: Sun, 16 Jun 2024 13:26:51 +0100 Subject: [PATCH] would really like to stop this now thanks :) --- server/tests/blog_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/tests/blog_test.go b/server/tests/blog_test.go index 5ba1508..5b571d9 100644 --- a/server/tests/blog_test.go +++ b/server/tests/blog_test.go @@ -35,7 +35,8 @@ func setupTestDB() (*sql.DB, error) { Subheading TEXT, Body TEXT, Created DATETIME - );` + ); + ` _, err = db.Exec(schema) if err != nil { return nil, fmt.Errorf("failed to create schema: %w", err)